/* notes*/
/* This is the css for the portfolio, the first half is the general css for all of the elements and pages. the second half gets more specific */

/* 0000000000 Typography 0000000000 */
/* font-family: 'Inter', sans-serif;
font-family: 'Oswald', sans-serif; / colours / #ffed08 YellowMain / #fa7e33 Orage / #83e0e6 Blue / #d6d6d6 Light Grey / #a3a3a3 Dark Grey / #333333 BLACK / #f3f3f3 WHITE */
@font-face {
    font-family: "Mont";
    src: url(../media/fonts/mont/Mont-Black.woff);
    src: url(../media/fonts/mont/Mont-Black.woff2);
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Mont";
    src: url(../media/fonts/mont/Mont-Book.woff);
    src: url(../media/fonts/mont/Mont-Book.woff2);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Mont";
    src: url(../media/fonts/mont/Mont-BookItalic.woff);
    src: url(../media/fonts/mont/Mont-BookItalic.woff2);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Mont";
    src: url(../media/fonts/mont/Mont-BoldItalic.woff);
    src: url(../media/fonts/mont/Mont-BoldItalic.woff2);
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Mont";
    src: url(../media/fonts/mont/Mont-Bold.woff);
    src: url(../media/fonts/mont/Mont-Bold.woff2);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Mont";
    src: url(../media/fonts/mont/Mont-Light.woff);
    src: url(../media/fonts/mont/Mont-Light.woff2);
    font-weight: 200;
    font-style: normal;
}

h1, h2, h3, h4, h5, p {
    margin-top: 5px;
    margin-bottom: 10px;
}
h1 {
    font-family: 'Mont', sans-serif;
    font-size: 48pt;
    text-transform: uppercase;
    color: #333333;
    font-weight: 700;
}
h2 {
    font-family: 'Mont', sans-serif;
    font-size: 18pt;
    font-weight: 700;
}
h3 {
    font-family: 'Mont', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    line-height: 1.3;
}
h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    margin-top: 0;
    padding-top:0;
    vertical-align: top;
    font-size: 10pt;
    text-transform: uppercase;
    text-align: right;
}
p {
    font-family: 'Mont', sans-serif;
    font-size: 12pt;
    margin-bottom: 32px;
}
a {
    text-decoration: none;
    color: #333333;
}
/* 0000000000 Layout and grid setup 0000000000 */
html {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    position: relative;
    background: #f3f3f3;
    /* Hide scrollbar for IE and Edge */
    -ms-overflow-style: none;
    scrollbar-width: none;  /* Firefox */
    /* Preventing selection of the body across browsers */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* typography */
    font-family: 'Inter', sans-serif;
    color: #333333;
    transition: background-color .3s;
}
/* horizontal scroll functionality */
.outer-wrapper {
    position: absolute;
    z-index: 1;
    height: 100vW;
    width: 100vh;
    box-sizing: border-box;
    /* rotating the entire canvas in order to create the horizontal scroll */
    transform-origin: top left;
    overflow-y: scroll;
    overflow-x: hidden;
    /* Hide scrollbar for IE and Edge */
    -ms-overflow-style: none;
    scrollbar-width: none;  /* Firefox */
    margin: 0;
    padding: 0;
    top:0;
    left:0;
    transform: rotate(-90deg) translateX(-100vh);
    transition: pageTransition .3s, background-color .3s;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.outer-wrapper::-webkit-scrollbar {
    display: none;
}
body::-webkit-scrollbar {
    display: none;
}
/* creating the horizontal scroll */
.wrapper {
    /* positioning */
    position: relative;
    z-index: 1;
    transform:rotate(90deg) translateY(-100vh);
    transform-origin: top left;
    height: 100vh;
    margin: 0;
    padding: 0;
    /* width fixing */
    display: inline-grid;
    grid-auto-flow: column;
}
/* All horizontal scroll sections */
.section {
    height: 100vH;
    padding: 0;
    margin: 0;
    position: relative;
    box-sizing: border-box;
    /* inner content */
    display: flex;
    justify-content: start;
    align-items: center;
    overflow: visible;
    flex-shrink: 0;
    flex-grow: 0;
    flex-direction: row;
}
.inner-section {
    height:100%;
    box-sizing: border-box;
    padding:  32px 32px;
    display: inline-grid;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    position: relative;
    grid-template-columns: repeat(auto-fill, 650px);
    grid-auto-columns: minmax(650px, 1fr);
    grid-template-rows: 1fr 1fr; 
    grid-auto-flow: column;
}
/* General Main Objects */
/* top right element on the screen */
.section-indicator {
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 100;
    display:block;
    color: #f3f3f3;
    mix-blend-mode: difference;
    pointer-events: none;
}
/* utility */
.clear {
    clear: both;
    display: block;
    height: 100%;
    width: 1px;
    align-self: center;
}
.hover {
    -webkit-user-select: none;
    -webkit-touch-callout: none;        
}
/* 0000000000 Specific Section Destinctions 0000000000 */
/* LOADING SCREEN */
#loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top:0;
    z-index: 1002;
    pointer-events: all;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .1s;
}
#loading h3 {
    font-size:21pt;
    text-align: center;
    /* animation: typing 2.5s steps(60, end); */
}
#loading h3 span {
    opacity:0;
}
#loading-canvas {
    width: 80%;
    height: 80%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SECTION 1 REEL HEADER */
/* Reel Section */
.reel-slide {
    height: 100%;
    width: 95vW;
    min-width: 80vw;
    padding: 50px;
    padding-left: 100px;
    display: flex;
    justify-content:start;
    align-items: center;
    position: relative;
    background-image: url("../media/imgs/NoBlackDesktop.gif");
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    background-color: #FFED08;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.title-container {
    /* positioning */
    position: relative;
    z-index: 2;
    padding: 0;
    box-sizing: border-box;
    opacity: 1;
    display: inline-flex;
    align-items:flex-start ;
    flex-direction: column;
}
.title-container h1 {
    color: #333333;
    transition: opacity 2s, font-size .3s;
    font-size: 7vw;
    margin-bottom: 16px;
}
.title-container h3 {
    width: 80%;
    margin-bottom: 24px;
}
.title-container p {
    color: #333333;
    transition: 2s;
    font-size: 21pt;
    margin-bottom: 30px;
}
.reel-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    pointer-events: all;
    width: auto;
    cursor: pointer;
    transition: .3s;
    /* margin-left: 32px; */
    background-color: #d6d6d6;
    border-radius: 4px;
}
.reel-button h3 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    transition:.3s;
    margin: 0;
    font-size: 14pt;
    vertical-align: middle;
    pointer-events: all;
    color: #333333;
    width: auto;
    font-family: 'Oswald', sans-serif;
}
.reel-button:hover, .reel-button.hover_effect {
    background-color: #83e0e6 ;
    border-radius: 10px;
}
.reel-button:hover h3, .reel-button.hover_effect h3,.reel-button h4.hover_effect {
    color: #f3f3f3;
    font-weight: 500;
}
.reel-button h3::after {
    display: block;
    content: attr(title);
    font-weight: 700;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
}
.title-container .textfade {
    color: #33333327;
}
.scroll-down {
    position: absolute;
    transition: .5s;
    top:60%;
    right: 40px;
    transform-origin:top left ;
    color: #333333;
}
.scroll-down::before {
    content: "";
    background: #333333;
    width: 200px;
    height: 1px;
    position: absolute;
    pointer-events: all;
    transition:.3s;
}
/*********** the video *****************/
.video-container {
    /* positioning */
    position:absolute;
    top:0;
    left:0;
    /* sizing */
    display:none;
    pointer-events: none;
    width: 100vw;
    height: 100vH;

    /* style */
    padding:0;
    background-color: #000000fa;
    justify-content: center;
    align-items: center;
    z-index: 1004;
    transform: translate3d(0,0,0);
}
.video-container video {
    height:100%;
    min-width: 100vh;
    max-width: 100%;
}
.visible-flex {
    display: flex;
    pointer-events:all;
    animation: .3s ease-out slideInFromBottom;
}
.removevid {
    animation: .3s ease-out slideOutFromBottom;
}
@keyframes slideInFromBottom{
    0% {
        transform: translate3d(0,100vh,0);
    }
    100% {
        transform: translate3d(0,0,0);
    }
}
@keyframes slideOutFromBottom{
    0% {
        transform: translate3d(0,0,0);
    }
    100% {
        transform: translate3d(0,100vh,0);
    }
}
/* Close Icon */
.close {
    width:40px;
    height:40px;
    position:absolute;
    top: 20px;
    right: 20px;
    transition: .3s all;
    transform: rotate(0deg);
    cursor: pointer;
}
.close .cls-1 {
    fill: #f3f3f3;
}
.close:hover {
    transform: rotate(90deg);
}
/* SECTION 2 CASE STUDY BLOCK */
/* Main Item block Element */
.main-item {
    grid-column-end: span 1;
    grid-template-columns: 100%;
    width: 100%;
    display: grid;
    height: 100%;
    grid-row-end: span 2;
    justify-items: left;
    position: relative;
    z-index: 30;
    clear: both;
    box-sizing: border-box;
}
.main-item a {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 0 20px;
    box-sizing : border-box;
    transform: translateY(0px);
    transition: .3s;
}
.main-item a > p {
    text-transform: uppercase;
    position: absolute;
    color: #f3f3f300;
    padding: 0;
    margin: 0;
    font-weight: 800;
}
.main-item h1, .main-item h4 {
    text-align: center;
    
    text-transform: uppercase;
}
.main-item h1 {
    
    color: #f3f3f300;
    margin: 0px;
    font-weight: 800;
    font-size: 48pt;
}
.main-item h4 {
    color: #f3f3f300;
    font-weight: 200;
    font-size: 14pt;
}
.main-item .year {
    top: 40px;
    margin-left: auto;
    margin-right: auto;
}
.main-item .label {
    bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
.main-item .works-image {
    width: 100%;
    height: 100%;
    position: absolute;
    grid-row-end: span 2;
    z-index: -1;
    display: flex;
    flex-flow: row;
    transform: scale(1,1);
    /* opacity: 0; */
    transition: opacity .4s, transform .4s;
    background-size: cover;
    background-position: center;
}
.main-item:hover .works-image, .main-item.hover_effect .works-image {
    -moz-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1); 
    opacity:1;
}
.main-item:nth-child(1) {
    grid-column-end: span 2;
    display: grid;
    grid-template-rows: repeat(8, 1fr [row]);
    grid-column-gap: 24px;
    grid-row-gap: 20px;
    grid-template-columns: 20% [col-start] 1fr 1fr [col-end];
}
/* case item */
.case-item {
    overflow: hidden;
    position: relative;
    z-index: 1;
    grid-row-end: span 1;
    transition: .5s;
    opacity: 0;
    transform: scale(.5);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.case-item a::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    mix-blend-mode:multiply;
    opacity: 0;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    bottom:0;
    right: 0;
    pointer-events: none;
    transition: .4s ease;
}
.case-item:hover a::after {
    opacity: .8;
}
.case-item a {
    transition: all .4s ease, background-color 1s ease-in;
}
.case-item:hover a, .case-item a.hover_effect, .case-item.hover_effect a {
    background-color: #08080800;  
    transition-timing-function: ease-out;
}
.play-item:hover a, .play-item a.hover_effect, .play-item.hover_effect a {
    background-color: #d6d6d6;
}
.play-item:hover a::after {
    opacity: 0;
}
.case-item a p, .case-item h1, .case-item h4 {
    transition: color .4s;
}
.case-item:hover p, .case-item:hover h1, .case-item:hover h4 {
    color: #f3f3f3;
}
.play-item:hover p, .play-item:hover h1, .play-item:hover h4 {
    color: #333333;
}
.case-item:hover .works-image {
    opacity: 1;
}
/* images */
.image-gradshow {
    background-image: url("https://live.staticflickr.com/65535/50548608846_771549f174_b.jpg");
}
.image-vigil {
    background-image: url("https://live.staticflickr.com/65535/50547850388_175b04b2aa_b.jpg");
}
.image-cluster {
    background-image: url("https://live.staticflickr.com/65535/50547849058_69fc8e1596_b.jpg");
}
.image-gold {
    background-image: url("https://live.staticflickr.com/65535/50548566696_bd8f02fe14_b.jpg");
}
.image-growth {
    background-image: url("https://live.staticflickr.com/65535/50547833638_a23252d0db_b.jpg");
}
.image-nasa {
    background-image: url("https://live.staticflickr.com/65535/50548581326_4d2856edf5_b.jpg");
}
.image-cocreation {
    background-image: url("https://live.staticflickr.com/65535/50548578521_3e4a92ec69_b.jpg");
}
.image-mountains {
    background-image: url("https://live.staticflickr.com/65535/50548711222_5c80ce6104_b.jpg");
}
.image-virtual {
    background-image: url("https://live.staticflickr.com/65535/50561047366_a6bdd52569_b.jpg");
}
.about-photo {
    background-image: url("https://live.staticflickr.com/65535/50547868228_c0734aa50b_b.jpg");
}
.image-motion {
    background-image: url("https://live.staticflickr.com/65535/50558981748_4b2073afe7_k.jpg");
}
.image-portraits {
    background-image: url("https://live.staticflickr.com/65535/50548583461_11a4b3a283_b.jpg");
}
.image-jack_next10 {
    background-image: url("https://live.staticflickr.com/65535/53582708530_d99e41be25_b.jpg");
}
.image-daybreak {
    background-image: url("https://live.staticflickr.com/65535/50547867328_5cf7deff7b_b.jpg");
}
.image-edhub{
    background-image: url("https://live.staticflickr.com/65535/50547867328_5cf7deff7b_b.jpg");
}
.image-jack_unwrappedaddictions {
    background-image: url("https://live.staticflickr.com/65535/53575955033_d81b4989b5_b.jpg");
}
.revealed {
    opacity: 1;
    transform: scale(1);
}
/* Intro Paragraphs */
.sec-two .main-item:nth-child(1) {
    cursor: pointer;
}
.intro-paragraph {
    position: relative;
    z-index: 6;
    grid-column: col-start / col-end;
    grid-row: 3 / span 4;
    transform: translate(0,0);
    /* mix-blend-mode: difference; */
}
.intro-paragraph h1 {
    text-align: left;
    margin-top: 5px;
    margin-bottom: 60px;
    color:#000;
    font-size: 48pt;
    font-weight: 700;
    box-sizing: border-box;
    position: relative;
    left:0;
}
.intro-paragraph h3 {
    max-width: 75%;
    color: #000;
}
.line-divider {
    height: 0;
    width: 100px;
    margin-top: 20px;
    border-bottom: #000 solid 2px;
}
.sec-two .intro-paragraph {
    pointer-events: none;
}
.intro-photo {
    position: relative;
    width: 100%;
    height: 100%;
    grid-row: 2 / 8;
    grid-column: 1 / span 2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate3D(25%,0,0);
    /* opacity: .5; */
    transition: all .4s, background-size 0s, background-image .1, background-position 0s;
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 100%);
}
.intro-photo:after {
    content:"";
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    background-color: #33333352;
    mix-blend-mode: multiply;
}
/* ABOUT / FOOTER */
.sec-about .main-item:nth-child(2) {
    display: flex;
    flex-direction: column;
    padding: 12.5vh 0;
}
.inner-container {
    grid-template-rows: repeat(autofill, 1fr [row]);
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    display: grid;
}
.sec-footer .main-item:nth-child(1) {
    grid-column-end: span 1;
    grid-template-rows: repeat(8, 1fr [row]);
    grid-template-columns: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}
/* inner-item */

.inner-item {
    grid-column-end: span 1;
    grid-row-end: span 1;
}
.inner-spacer {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
}
.inner-item a {
    display: inline-block;
    flex-direction: row;
    width: auto;
    word-wrap: break-word;
    color: #333333;
    margin:4px 0px;
    margin-right: 8px;
    text-align: left;
    font-size: 16pt;
    padding: 0;
}
.inner-item a::after {
    display: block;
    content: attr(title);
    font-weight: 700;
    height: 0px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    user-select: none;
    pointer-events: none;
}
.inner-item a:hover {
    font-weight: 700;
}
.inner-item a:hover svg, .inner-item a.hover_effect svg, .inner-item a svg.hover_effect {
    fill: #fa7e33;
}
/* SECTION 3 ABOUT */
.about-description {
    margin-bottom: 10vh;
}
.about-description a {
    display: inline;
    margin: 0;
    font-size: inherit;
    color: #5c5858;
    font-weight: 600;
}
.about-description a:hover {
    font-weight: 600;
    color: #fa7e33;
}
.about-description a:after {
    position: absolute;
}
/* created items */
.aboutAppend {
    cursor: pointer;
}
.appendedItem {
    pointer-events: none;
    position: absolute;
    min-width: 100px;
    min-height: 100px;
    z-index: 5;
    background-color: #5c5858; 
    color: #333333cc;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 15px;
    justify-content: center;
    transform: translateX() translateY() rotate();
}
.sec-about {
    padding-right: 128px;
}
/* SECTION 4 FOOTER */
footer#footer {
    background: #d6d6d6;
    padding: 0 128px;
}
.sec-footer .inner-item {
    grid-column-end: span 2;
}
.sec-footer .inner-item a {
    word-wrap: break-word;
}
.sec-footer .footer-copyright {
    grid-column-end: span 1;
    grid-row-start: 6;
    grid-row-end: span 2;
    align-self: end;
}
.sec-footer a svg {
    width: auto;
    height: 15px;
    mask-type: alpha;
    fill: #333333;
    transition: .3s;
    margin-right: 5px;
}
.sec-footer .cls-1 {
    fill:#333333;
    transition: .3s;
}
.sec-footer a:hover svg, .sec-footer a:hover .cls-1, .sec-footer a.hover_effect svg, .sec-footer a.hover_effect .cls-1  {
    fill: #3b3b3b;
}

/* Decoration */
.parallax-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #f3f3f3;
    pointer-events: none;
    position: absolute;
    left: 0;
    opacity:.5;

}
.parallax {
    position:fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    left: 0;
    background-repeat: repeat-x;
    background-position-y: bottom;
    position: fixed;
    bottom: 0;
    opacity: 1;
}
.F-foreground {
    background-image: url("https://live.staticflickr.com/65535/50564011222_f350fc34dc_o.png");
}
.F-midground {
    background-image: url("https://live.staticflickr.com/65535/50563129898_f8171c03b9_o.png");
}
.F-background {
    background-image: url("https://live.staticflickr.com/65535/50564011192_bfa760cc42_o.png");
}
.F-distant {
    background-image: url("https://live.staticflickr.com/65535/50564007561_f299a049bb_o.png");
}
.F-sky {
    background-image: url("https://live.staticflickr.com/65535/50564409731_afcd1e56c7_o.png");
}
/* 0000000000 Navigation 0000000000 */
.main-navigation {
    position: fixed;
    z-index: 1000;
    left: 0;
    width:50px;
    height: 100vH;
    background: #f3f3f3;
    transition: .3s;
    padding:0;
    display: flex;
    justify-content: left;
    align-content: center;
    opacity: 0.99;
    transform: translate3d(0,0,0);
    top:0;
}
.index-nav {
    width: 100%;
    max-width: 50px;
    height: 99vH;
    position: relative;
    z-index: 950;
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: .99;
    transition: .3s;
    pointer-events: auto;
    transform: translate3d(0,0,0);
}
.extended-nav {
    position: absolute;
    width: 8px;
    height: 100vH;
    background: #333333;
    transition: .3s;
    display: flex;
    justify-content: right;
    align-items: center;
    left: 0;
    margin-left: 100%;
    top: 0;
    overflow: hidden;
    z-index: -1;
    cursor: pointer;
}
.ext-textbox {
    transform: rotate(-90deg);
    position: relative;
    box-sizing: border-box;
    mix-blend-mode: difference;
    transition: .3s;
}
.extended-nav:hover .ext-textbox p {
    font-weight: 600;
}
.extended-nav p {
    display: block;
    position: absolute;
    white-space: nowrap;
    margin: 0;
    padding-top: 12px;
    right: 0;
    font-size: 10pt;
    color: #f3f3f3;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 10;
}
.scroll-indicator {
    position:absolute;
    width: 100%;
    height: 0%;
    top:0;
    z-index: -1;
}
.close-button {
    display: none;
    position: absolute;
    top: 16px;
    right:16px;
    width: 22px;
    height: 22px;
    margin: 0;
    transform: rotate(0deg);
    transition: .3s;
}
.close-button:hover, .close-button.hover_effect {
    transform: rotate(45deg);
}
.main-navigation:hover .extended-nav, .main-navigation.hover_effect .extended-nav {
    width: 40px;
}
/* main logo */
.main-logo {
    /* spacing */
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 0px;
    width: 22px;
    height: 22px;
    position: relative;
    /* border-bottom: #f3f3f3 solid 2px; */
}
.main-logo a {
    /* typography $25.11*/
    font-family: 'Inter', sans-serif;
    font-size: 14pt;
    font-weight: 700;
    color: #a3a3a3;
    /* position: relative; */
}
.main-logo svg {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0;
    transform: rotate(0deg);
    transition: .3s;
}
.main-logo:hover svg, .main-logo.hover_effect svg {
    transform-origin: center;
    transform: rotate(-45deg);
}
.main-logo:hover .cls-1, .main-logo.hover_effect .cls-1  {
    fill:#fa7e33;
}
/* Nav list dots */
nav ul {
    list-style-type: none;
    margin: 10px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .3s;
}
.nav-list li, .social-list li, .viewing-list li {
    margin: 10px 0;
    padding: 0;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    position: relative;
}
.nav li a {
    position: relative;
    min-width: 22px;
    height: 22px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
nav li a svg {
    width: 22px;
    height: auto;
    mask-type: alpha;
    fill: #a3a3a3;
    transition: .3s;
}
.cls-1 {
    fill:#a3a3a3;
    transition: .3s;
}
nav li a:hover svg, nav li a:hover .cls-1, nav li a.hover_effect svg, nav li a.hover_effect .cls-1  {
    fill: #fa7e33;
}
.extended-text {
    position: absolute;
    color: #a3a3a3;
    font-weight: 300;
    top: 0;
    left: 0;
    white-space: nowrap;
    margin-left: 190%;
    transition: .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    vertical-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12pt;
    /* Events */
    opacity: 0;
    pointer-events: none;
}
a.extended-text {
    transition: .3s;
}
.extended-text:hover, nav li a:hover .extended-text, .main-logo:hover .extended-text, .extended-text.hover_effect, nav li a.hover_effect .extended-text, .main-logo.hover_effect .extended-text  {
    color: #fa7e33;
    font-weight: 600;
}
/* Nav Toggle States */
.open-nav {
    width: 200px;
}
.close-nav {
    width: 0px;
}
.inner-closenav {
    opacity: 0;
    pointer-events: none;
}
.extended-on {
    opacity: 1;
    pointer-events: all;
}
/* ***************
Visibility Classes and animations
******************/
.pageTransition {
    animation: 1.2s ease-out .2s 1 slideInFromTop;
    background-color: #f3f3f3; 
}
@keyframes slideInFromTop{
    0% {
        transform: rotate(-90deg) translateX(-100vh);
    }
    100% {
        transform: rotate(-90deg) translateX(100vh);
    }
}

@media screen and (min-width: 650px) and (max-width: 1079px) {
    h1 {
        font-size: 36pt;
    }
    .inner-section {
        grid-template-rows: 1fr 1fr
    }
    .intro-paragraph {
        grid-column: col-start / col-end;
        grid-row: 3 / span 4;
    }
    .scroll-down {
        position: absolute;
        transition: .5s;
        top:65%;
        right: 40px;
        transform-origin:top left ;
    }
    .main-item {  
        grid-row-end: span 2;
    }
    .scroll-down {
        top:65%;
    }
    .case-item {
        grid-row-end: span 1;
    }
}
@media screen and (min-height: 0px) and (max-height: 750px) {
    .nav-list li, .social-list li {
        margin: 4px 0px;
    }
    .sec-footer .main-item:nth-child(1) {
        grid-column-end: span 1;
        grid-template-rows: repeat(5, 1fr [row]);
        grid-template-columns: 1fr;
        grid-column-gap: 8px;
        grid-row-gap: 8px;
    }
    .sec-about .main-item:nth-child(2) {
        padding: 0;
    }
    .about-description {
        margin-bottom: 5vh;
    }
    .sec-footer .footer-copyright {
        grid-row-start: 5;
    }
    .inner-spacer {
        position: absolute;
    }
    h3, .inner-item a {
        font-size: 14pt;
    }
}
@media screen and (min-width: 0px) and (max-width: 649px) {
    h1 {
        font-size: 48pt;
    }
    h3 {
        font-size: 12pt;
    }
    /* horizontal scroll functionality */
    .outer-wrapper {
        width: 100vW;
        height: 100vH;
        overflow-y: scroll;
        overflow-x: scroll;
        transform: rotate(0deg) translateX(0vh);
    }
    .wrapper {
        transform:rotate(0deg) translateY(0vh);
        width: 100vw;
        height: auto;
        display: inline-grid;
        grid-auto-flow: row;
    }
    /* All horizontal scroll sections */
    .section {
        width: 100vw;
        height: auto;
        display: flex;
        justify-content: center;
        align-items:flex-start;
        flex-direction: column;
    }
    .inner-section {
        height:auto;
        padding:  32px 8px;
        grid-template-rows: repeat(auto-fill, 100vw);
        grid-auto-rows: minmax(100vw, 1fr);
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        width: 100%;
    }
    .sec-about .inner-section {
        display: flex;
        flex-direction: column;
    }
    .sec-footer .inner-section {
        display: flex;
        flex-direction: column;
    }
    .section-indicator {
        mix-blend-mode: normal;
        color: #333333;
        top: 40px;
    }
    .reel-slide {
        width: 100vw;
        height: 100vh;
        padding: 24px;
        padding-left: 64px;
        background-image: url(../media/imgs/Header_M2.gif );
    }
    .scroll-down {
        top: 75%;
        left: 40%;
        transform: rotate(90deg);
    }
    .scroll-down::before {
        width: 100px;
    }
    .case-item h1 {
        font-size: 27pt;
    }
    .revealed {
        transition: .5s;
        opacity: 1;
        transform: translate3d(0,0,0);
    }
    .works-image {
        opacity: 1;
    }
    /* about and footer section */
    .sec-about {
        padding-right: 0;
    }
    .about-spacer {
        position: absolute;
    }
    .main-item:nth-child(1) {
        display: flex;
        flex-direction: column;
        grid-column-end: span 1;
        grid-row-end: span 2;
        /* grid-template-columns: 30px [col-start] 1fr 1fr [col-end]; */
    }
  /* ABOUT / FOOTER */
    .sec-about .main-item:nth-child(2) {
        display: flex;
        flex-direction: column;
        height: auto;
        grid-row-end: span 2;
        padding:0;
        margin-top: 32px;
    }
    .sec-footer .main-item:nth-child(1) {
        height: auto;
    }
    footer#footer {
        padding: 72px 0 0 0px;   
    }
    .intro-paragraph {
        text-align: center;
        align-items: center;
        padding-bottom: 32px;
    }
    .intro-paragraph h1 {
        font-size: 13vw;
        color: #333333;
        text-align: center;
    }
    .intro-paragraph h3 {
        color: #333333;
        text-align: center;
    }
    .line-divider {
        border-bottom: #333333 solid 2px;
        margin-left: auto;
        margin-right: auto;
    }
    .intro-photo {
        width: 100%;
        height: 100%;
        right:0;
        bottom: 0;
        transform: translate3d(0%,0,0);
    }
    .inner-item {
        grid-row-end: span 1;
        grid-column-end: span 1;
    }
    .inner-item a {
        font-size: 12pt;
    }
    .inner-item {
        padding-bottom: 32px;
    }
    .inner-spacer {
        position: absolute;
    }
    .inner-container {
        display: flex;
        flex-direction: column;
    }
    .about-description {
        margin-bottom: 0%;
    }
    .about-photo {
        width: 100%;
        height: 150vw;
    }
    /* Navigation stuffs */
    .main-navigation {
        width: 0;
    }
    .index-nav {
        opacity: 0;
        pointer-events: none;
    }
    .extended-nav {
        Height: 8px;
        width: 100vw;
        top:0;
        justify-content: center;
    }
    .ext-textbox {
        transform: rotate(0deg);
    }
    .extended-nav p {
        position: relative;
        padding:0;
        opacity: 0;
        pointer-events: none;
        transition: .2s;
    }
    .scroll-indicator {
        width: 0;
        height: 100%;
        left:0;
    }
    .close-button {
        display: block;
    }
    .main-navigation:hover .extended-nav, .main-navigation.hover_effect .extended-nav, .main-navigation .extended-nav.hover_effect {
        width: 100vw;
        height: 32px;
    }
    .main-navigation:hover .extended-nav p, .main-navigation.hover_effect .extended-nav p, .main-navigation .extended-nav p.hover_effect { 
        opacity: 1;
    }
    .extended-on {
        opacity: 1 !important;
        pointer-events: all !important;
    }
    .extended-large {
        height: 32px;
    }
    .open-nav {
        width: 100vw;
    }
    .reel-button {
        background-color: #FFED08;
    }
    @keyframes slideInFromTop{
        0% {
            transform: rotate(0deg) translateX(-100vh);
        }
        100% {
            transform: rotate(0deg) translateX(100vh);
        }
    }

    /*********** the video *****************/
    .video-container video {
        width:100%;
        min-width: 100vw;
        height: auto;
    }
    .visible-flex {
        display: flex;
        pointer-events:all;
    }
}
