*,*::before,*::after {  
    box-sizing: border-box;   /* ensures padding is included in width calculations */
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body{
    font-family: AG-Medium, sans-serif;
    font-size: 80%;
}

@font-face { 
    font-family: "AG-Medium"; 
    src: url("../fonts/AG-Medium.otf"); 
}

@font-face { 
    font-family: "AG-Bold"; 
    src: url("../fonts/AG-Bold.otf"); 
}

@font-face { 
    font-family: "AG-Light"; 
    src: url("../fonts/AG-Light.ttf"); 
}

@font-face { 
    font-family: "AG-LightItalic"; 
    src: url("../fonts/AG-LightItalic.ttf"); 
}

@font-face { 
    font-family: "AG-Book"; 
    src: url("../fonts/AG-Book.ttf"); 
}

@font-face { 
    font-family: "AG-MedItalic"; 
    src: url("../fonts/AG-MedItalic.ttf"); 
}

::selection{
    color: white;
    background: #2D2D2D;
    -webkit-text-stroke-color: white;
}

h1, h2, h3, h5 {
    text-transform: uppercase;
}

h1 {
    color: transparent;
    font: normal 5em AG-Medium;
    letter-spacing: 4px;

    text-shadow:
        -.5px -.5px 0 none,  
        .5px -.5px 0 none,
        -.5px .5px 0 none,
        .5px .5px 0 none;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}

h2 {
    letter-spacing: 4px;  
    font-size: 1.7em;
    margin-bottom: 0px;
}

h3 {
    font-size: 1.4em;
    margin: 0px auto auto 0px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transform-origin: left middle 0;
    writing-mode: vertical-lr;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

h4 {
    font: italic 1.2em Georgia;
    color: gray;
    margin-top: 5px;
}

h5 {
    font: italic 1em Georgia;
    color: #E2D8CE;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h5 a {
    color: #E2D8CE;
}

h5 a:hover {
    text-decoration: underline;
}

h6 {
    font: normal 1em AG-Book;
    color: #90847C;
    line-height: 150%;
    letter-spacing: 2px;
}

p {
    font: normal 1.2em Arial;
    padding: 1% 0px;
}

ol {
    font: normal 1.2em Arial;
}

br:after {
    margin-top: 10px;
}

a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

a:focus {
    outline: none;
}

.hide {
    display: none;
    visibility: hidden;
}

.mobile-hide {
    display: none;
}

button {
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    float: left;
    border: solid 5px #68B0FF;
    cursor: pointer;
    font: normal 1em AG-Bold;
    letter-spacing: 2px;
    width: 150px;
    height: 70px;
    background: none;
    color: #68B0FF;
}

#resume-button {
    margin-right: 5%;
}

#resume-button:hover, #contact-button:hover {
    background: #68B0FF;
    color: #F4F1EF;
}

button:focus, button:hover {
    outline: none;
}

video:focus {
    outline: none;
}

/******** PORTFOLIO NAV ************/
#sidebar {
    position: fixed;
    width: 150px;
    height: 100vh;
    z-index: 1;
    left: 0px;
}

#sidebar h3 {
    width: auto;
    position: absolute;
    top: 50px;
    left: 50px;
}

nav {
    position: absolute;
    margin: 38vh auto auto 60px;
    border-left: solid 2.5px #90847C;
    cursor: pointer !important;
}

.navCircle:hover { 
    cursor: pointer !important;
}

.navCircle {
    background: white;
    margin-left: -8.5px;
    margin-top: 15px;
    width: 8px;
    height: 8px;
    border: solid 2.5px #90847C;
    border-radius: 15px;
    cursor: pointer;
}

.navCircle:focus {
    background: white;
}

.navCircle:first-child {
    margin-top: 0px;
}

/*----------------- New Home Hub -----------------*/
#hub {
   background: #F4F1EF;
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

#hub-card-container {
    display: flex;
    column-gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 48px;
    width: 100%;
}

.hub-card {
    flex: 1;
    height: 40vh;
    max-height: 400px;
    min-height: 300px;
    background-color: #2D2D2D;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background-position: center;
    background-size: cover;
}

.hub-card:hover {
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.4);


    -webkit-transition: .1s ;
    -moz-transition: .1s ease-in;
    -ms-transition: .1s ease-in;
    -o-transition: .1s ease-in;
    transition: .1s ease-in;
}

.hub-card p {
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 32px;
    letter-spacing: 2px;
}

#hub-card-portfolio {
    background-image: url(../img/wwt.jpg);
}

#hub-card-photography {
    background-image: url(../img/gal-img/colorado/co-1.jpg);
}

/*----------------- Portfolio Home -----------------*/
#home-intro h1, #hub h1 {
    transform-origin: left middle 0;
    writing-mode: vertical-lr;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    float: left;

    height: auto;
    /*transform-origin: 0;*/
    color: none;
    margin: 0px;

    text-shadow:
        -.5px -.5px 0 none,  
        .5px -.5px 0 none,
        -.5px .5px 0 none,
        .5px .5px 0 none;
    -webkit-text-stroke-color: black;
}


#home-intro {
    background: #F4F1EF;
    height: 60vh;
    width: 100vw;
    position: relative;
    z-index: 3;
    display: flex;
    column-gap: 96px;
    flex-direction: row;
    align-content: center;
    align-items: center;
    line-height: 40%;
}

#home-intro h2 {
    color: #90847C
}

#home-intro-col1, #home-intro-col2  {
    width: 40%;
    float: left;
}

#home-intro-col2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#home-intro-col2 > div {
    margin-top: 10%;
}

#home-intro-col1 {
    margin-right: 5%;
}

#background-lines {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 0px;
}

.background-line {
    height: 100vh;
    width: 2px;
    background: #F4F1EF;
    position: fixed;
    z-index: -1;
}

#bl-1{
    margin-left: 20%;
    z-index: -1;
}

#bl-2{
    margin-left: 40%;
    z-index: -1;
}

#bl-3{
    margin-left: 60%;
    z-index: -1;
}

#blob-canvas {
    left: 10vw;
    width: 50vw;
    height: 80vh;
    top: 10vh;
    z-index: 2;
}

.blob {
    width: 100%;
}

.mob-blob-container, .mob-blob {
    display: none;
}

#project-section {
    margin-left: 200px;
    z-index: 1;
    padding-top: 5%;
    position: relative;
    display: block;
}

.project-block {
    position: relative;
    display: block;
    min-height: 70vh;
}

.project-block img{
    max-width: 50%;
    float: left;
    max-height: 50vh;
    display: inline-block;
}

.project-block h2 {
    display: inline;
    min-height: 30px;
}

.title-highlight {
    position: absolute;
    display: block;
    background: #68B0FF;
    height: 0px;
    z-index: -1;
    margin: -20px 0px 0px 0px;
}

.title-highlight:nth-child(2){
    margin-top: -50px;
}

.project-block h2:hover div {
     visibility: visible;
    height: 20px;
    
    -webkit-transition: height .2s ;
    -moz-transition: height .2s ease-in;
    -ms-transition: height .2s ease-in;
    -o-transition: height .2s ease-in;
    transition: height .2s ease-in;
}

.project-info {
    width: 30%;
    float: right;
    display: inline-block;
    margin-right: 10%;
}

.project-info h6 {
    float: none;
}

.project-info canvas {
    position: relative;
    width: 50%;
    height: 60%;
    min-height: 60%;
    border: solid 1px yellow;
}

/*----------------- FOOTER -----------------*/
footer {
    height: auto;
    width: 100%;
    background: #2D2D2D;
    margin-top: 0%;
    padding: 24px 64px 64px 64px;
    position: relative;
    z-index: 2;
    color: white;
    display: block;
}

footer h1 {
    -webkit-text-stroke-color: white;
}

.footer-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: normal;
}

.copyright {
    text-align: left;
    text-transform: uppercase;
    opacity: .6;
    font-size: 1.2em;
    margin: 0px;
    letter-spacing: 2px;
    color: white;
}

footer .social {
    display: block;
    justify-content: center;
    width: 24px;
    padding: 0px;
}

.social a img {
    width: 100%;
    object-fit: contain;
    opacity: .8;
    cursor: pointer;

    -webkit-transition: opacity .1s ;
    -moz-transition: opacity .1s ease-in;
    -ms-transition: opacity .1s ease-in;
    -o-transition: opacity .1s ease-in;
    transition: opacity .1s ease-in;
}

.social a:hover img {
    opacity: 1;

    -webkit-transition: opacity .1s ;
    -moz-transition: opacity .1s ease-in;
    -ms-transition: opacity .1s ease-in;
    -o-transition: opacity .1s ease-in;
    transition: opacity .1s ease-in;
}

/*---------- ARROWS --------------*/
.arrows-brown {
    display: block;
    height: 25px;
}

.arrows-brown .arrow {
    width: 25px;
    height: 25px;
    float: left;
    margin-right: -8px;
}

.arrows-brown .L1, .arrows-brown .L2{
    width: 25px;
    height: 4px;
    background: #E2D8CE;
    position: absolute;
}

.arrows-h .L1 {
    margin-top: 0px;
    -moz-transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.arrows-h .L2{
    margin-top: 13.5px;
    -moz-transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
}

.arrows-blue .L1, .arrows-blue .L2 {
    background: #73B9FF;
}

/*----- ARROWS VERTICAL -------*/

.arrows-v {
    height: 15px;
}

.arrows-v .L2 {
    -moz-transform: rotate(-50deg);
    -webkit-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.arrows-v .L1 {
    -moz-transform: rotate(50deg);
    -webkit-transform: rotate(50deg);
    -o-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
}

.arrows-v .arrow {
    width: 15px;
    height: 15px;
    margin-top: -3px;
}

.arrows-v .L1, .arrows-v .L2{
    width: 15px;
    height: 3px;
    position: absolute;
}

.arrows-v .L2 {
    margin-left: 8.5px;
}

/*-----------*/


/*-----------*/

.arrows-brown-2 {
    display: block;
    height: 25px;
}

.arrows-brown-2 .arrow {
    width: 25px;
    height: 25px;
    margin-top: -7px;
}

.arrows-brown-2 .L1, .arrows-brown-2 .L2{
    width: 25px;
    height: 4px;
    background: #90847C;
    position: absolute;
}

.arrows-brown-2 .L2 {
    margin-left: 14.5px;
}

.arrows-brown-2 .L2 {
    -moz-transform: rotate(-50deg);
    -webkit-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.arrows-brown-2 .L1 {
    -moz-transform: rotate(50deg);
    -webkit-transform: rotate(50deg);
    -o-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
}

/*---------- PROJECTS --------------*/

.menu-blob, .mob-menu {
    display: none;
}

.project-prev {
    top: 0px;
    position: fixed;
    left: 5vw;
    z-index: 3;
    height: 100vh;
}

.project-prev a {
    position: absolute;
    top: 160px;
    margin-left: 3vw;

    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.project-prev h3 {
    position: absolute;
    top: 30px;
}

.project-home {
    position: fixed;
    top: 5vh;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 3;
    width: 100vw;
}

.project-home a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px;
    gap: 12px;
}

.project-home h3 {
    margin: 0px;
    writing-mode: horizontal-tb;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.project-home a div {
    margin-right: 24px;
}

.project-home a img{
    padding: 0px;
    top: 2px;
    position: absolute;
    width: 24px;
}

.project-home a img:first-child {
    display: none;
}

.project-home a div:hover img:first-child {
    display: block;
}

.project-next {
    top: 0px;
    position: fixed;
    right: 5vw;
    z-index: 3;
    height: 100vh;
}

.project-next h3{
    position: absolute;
    top: 30px;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    float: left;
}

.project-next a {
    position: absolute;
    top: 40px;
    right: .7vw;
}

.project-prev .side-line{
    left: 1vw;
}

.project-next .side-line {
    right: -1vw;
}

.side-line {
    width: 1px;
    position: absolute;
    background: #F4F1EF;
}

.mobile-title-name {
    display: none;
}

.project-category {
    text-align: center;
    margin: 0vh;
}

.project-header {
    display: inline-block;
    text-align: center;
    width: 70%;
    margin: 10vh 15% 5% 15%;
}

.project-header h1 {
    display: inline-block;
    width: auto;
    position: relative;
    z-index: 1;
}

.project-header div {
    display: inline-block;
}

.project-header img {
    position: relative;
    display: block;
    z-index: 0;
    width: 100%;
}

.project-link {
    width: 100%;
    display: block;
    color: #73B9FF;
    font-size: 1.2em;
    letter-spacing: 2px;
    margin-top: 2.5%;
    cursor: pointer;

    -webkit-transition: color 1s ;
    -moz-transition: color 1s ease-in;
    -ms-transition: color 1s ease-in;
    -o-transition: color 1s ease-in;
    transition: color 1s ease-in;
}

.project-link:hover {
    color: #2D2D2D;

    -webkit-transition: color 1s ;
    -moz-transition: color 1s ease-in;
    -ms-transition: color 1s ease-in;
    -o-transition: color 1s ease-in;
    transition: color 1s ease-in;
}

.project-meat > p, .project-meat > ol, .project-meat > .proj-desc {
    width: 60%;
    margin: 2.5vh 20%;
}

.project-meat ol {
    column-count: 2;
    column-gap: 10%;
}

.project-meat > img, .project-meat > video {
    /*width: 60%;*/
    margin: 2.5vh 20%;
}

.proj-p-box {
    width: 30% !important;
    margin: 2.5% 30% !important;
    padding: 5%;
    background: #F4F1EF;
}

.proj-p-left {
    display: block;
    width: 30% !important;
    margin: -5% 50% 0% 20% !important;
}

.proj-p-right {
    width: 30% !important;
    display: block;
    margin: -5% 20% 0% 50% !important;

    text-align: right;
}

.beige-b {
    background: #F4F1EF;
}

.proj-caption {
    font: italic 1em Arial;
    letter-spacing: 1px;
    text-align: center;
}

.proj-images-1 {
    width: 100vw;
    margin: 2.5% 0px;
    padding: 2.5vh 0px;
}

.proj-images-1 div{
    width: 60vw;
    margin: 0px 20vw;
    padding: 0px;
    display: grid;
    grid-template-columns: 14vw 14vw 14vw 14vw;
    grid-column-gap: 1.33vw;
}

.proj-images-1 img {
    width: 100%;
}

.proj-images-2 {
    width: 100vw;
    margin: 2.5% 0px;
    display: block;
    position: relative;
}

.proj-images-2 img {
    width: 95%;
    display: block;
    margin: auto 2.5%;
    position: relative;
    z-index: 1;
}

.proj-images-2 div {
    background: #F4F1EF;
    width: 60%;
    height: 50%;
    position: absolute;
    margin: -45% 20% auto 20%;
    z-index: 0;
}

.proj-images-3 {
    width: 100%;
    padding: 10vh 0px;
    background: #F4F1EF;
}

.proj-images-3 img, .proj-images-3 video {
    width: 60%;
    margin: 0 20%;
}

.proj-images-3 p {
    text-align: center;
    width: 60vw;
    margin: 2.5vh 20vw -2.5vh 20vw;
}

.proj-images-4 {
    position: relative;
    width: 60%;
    margin: 10% 20%;
    display: block;
    padding: 0px;
}

.proj-images-4 img {
    position: relative;
    z-index: 1;
    width: 60%;
    margin-left: 40%;
}

.proj-images-4 p {
    position: absolute;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    width: 40%;
    top: 0px;
    margin: auto 0px auto -5%;
    padding: 0px;
}

.proj-images-4 div {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 80%;
    padding: 0px;
    margin-top: 10%;
    background: #F4F1EF;
}

.proj-images-5 {
    position: relative;
    width: 60%;
    margin: 2.5% 20%;
    padding: 5% 0px;
    display: block;
    background: #F4F1EF;
    height: 100%;
}

.proj-images-5 img {
    position: relative;
    z-index: 1;
    width: 60%;
    margin-left: 40%;
}

.proj-images-5 > p, .proj-images-5 > div {
    position: absolute;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 1;
    width: 40%;
    margin: auto 0px auto -5%;
    padding: 0px;
    top: 0px;
}

.proj-images-5 div div {
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
}

.proj-images-5 div div p {
    width: 100%;
    margin: 0px;
    position: relative;
    height: auto;
}

.proj-images-5 div div p:first-child{
    margin-bottom: 2.5vh;
}

.proj-images-6 {
    width: 60%;
    background: #F4F1EF;
    margin: 10% 20%;
    padding-bottom: 2.5%;
}

.proj-images-6 img {
    width: 120%;
    margin: -20% 0% auto -10%;
}

.proj-images-6 p {
    column-count: 2;
    column-gap: 5%;
    grid-row-gap: 2.5vh;
    width: 90%;
    margin: 0px 5%;
}

.proj-images-7 {
    width: 100vw;
    background: #F4F1EF;
    overflow: hidden;
    padding-bottom: 2.5%;
}

.proj-images-7 p {
    width: 60%;
    margin: -5% 20% auto 20%;
}

.proj-images-7 img {
    height: 110%;
    margin-left: 10%;
}

.proj-images-8 {
    width: 60%;
    margin: auto 20% 5% 20%;
    text-align: center;
    background: #F4F1EF;
    padding: 2.5% 0px;
}

.proj-images-8 p{
    width: 70%;
    margin: 2% 15%;
}

.proj-images-8 img {
    width: 140%;
    margin-left: -20%;
}

.proj-images-9 {
    width: 60%;
    margin: 2.5% 20% 5% 20%;
    text-align: center;
    background: #F4F1EF;
    padding: 2.5% 0px;
}

.proj-images-9 img {
    width: 90%;
    margin: auto;
}

.proj-images-blob {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.proj-images-blob img{
    width: 60vw;
    margin: 2.5vh 20vw;
    padding: 2.5vh 0px;
    position: relative;

    -webkit-transition: filter .2s ;
    -moz-transition: filter .2s ease-in;
    -ms-transition: filter .2s ease-in;
    -o-transition: filter .2s ease-in;
    transition: filter .2s ease-in;
}

.proj-images-blob img:hover {
    filter: brightness(.8);
    cursor: pointer;

    -webkit-transition: filter .2s ;
    -moz-transition: filter .2s ease-in;
    -ms-transition: filter .2s ease-in;
    -o-transition: filter .2s ease-in;
    transition: filter .2s ease-in;
}

.proj-images-blob h2 {
    display: none;
    filter: opacity(.5);
    color: white;
    position: absolute;
    text-align: center;
    width: 60vw;
    margin: auto 20vw;
    cursor: pointer;
}

.proj-images-blob:hover h2, .proj-images-blob h2:hover {
    display: block;
    filter: opacity(1);
    
    -webkit-transition: filter .5s ease-in;
    -moz-transition: filter .5s ease-in;
    -ms-transition: filter .5s ease-in;
    -o-transition: filter .5s ease-in;
    transition: filter .5s ease-in;
}

.proj-image-grid {
    /*background: #F4F1EF;*/
    text-align: center;
    position: relative;
    padding-bottom: 48px;
    padding-top: 64px;
    margin-top: 5%;
}

#video-gallery {
    background: #F4F1EF;
}

#video-gallery div {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

#video-gallery video {
    max-width: 50vw;
}

.proj-image-grid h1 {
    margin-top: -96px;
    width: 100%;
    position: absolute;
}

.proj-image-carousel {
    width: 100%;
    background: #F4F1EF;
    display: block;
    position: relative;
    margin: 2.5% 0px;
    padding: 2.5% 0px;
}

.proj-image-carousel .inner {
    width: 80%;
    margin: auto 10%;
}

.proj-image-carousel p {
    position: relative;
    display: block;
    width: 60%;
    margin: auto 20%;
    text-align: center;
}

/*------- LAST PADDING/MARGIN FIXED ------*/
.remove-bottom-p {
    padding-bottom: 0px;
    margin-bottom: -5% !important;
}

.remove-top-p {
    padding-top: 0% !important;
    margin-top: 0% !important;
}

.add-top-p {
    margin-top: 5% !important;
}

.reduce-p {
    padding-top: 2.5vh !important;
    padding-bottom: 2.5vh !important;
}

.add-bottom-p {
    margin-bottom: 2.5vh !important;
}