@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Suranna&display=swap");

body {
    margin: 0;
    pointer-events: none;
    background-color: #f1ebea;
}

html {
    scroll-behavior: smooth;
}

/*
* ======== FONTS ========
*/
h1, h2, h3, h4, p, .site-nav__link {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, a:not(.btn) {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2d0e24;
}

p a:not(.btn) {
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    
    &:after {
        content: "";
        display: block;
        background: #2d0e24;
        width: 100%;
        height: 1px;
        position: absolute;
        top: auto;
        bottom: 4px;
        left: 0;
        right: 0;
        margin: auto;
        transition: 0.5s ease width;
    }
    
    &:hover:after, &:focus:after, &:active:after {
        width: calc(100% - 2rem);
    }
}

h1, h2, h3, h4, .site-nav__link {
    text-transform: lowercase;
}

h1, h2 {
    line-height: 1;
}

.hero-content h1 {
    font-family: "Lexend Deca";
    font-size: 120px;
    font-weight: 500;
    color: #fff;
}

.hero-content h3 {
    font-family: "Lexend Deca";
    font-size: 36px;
    font-weight: 300;
    color: #fff;
}

h1 {
    font-family: "Suranna";
    font-size: 50px;
    font-weight: 400;
}

h2 {
    font-family: "Lexend Deca";
    font-size: 60px;
    font-weight: 400;
}

p {
    font-family: "Lexend Deca";
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.card-heading {
    font-family: 'Suranna';
    text-transform: lowercase;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
}

.split-heading, .tri-panel__heading, .contact-form h2 {
    font-family: 'Suranna';
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
}

.glitch {
    display: inline-block;
    animation: flicker 5s linear 1s infinite alternate-reverse;
}

@-webkit-keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
        transform: translate(0, 0) skew(0);
    }
  
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
        transform: translate(-2px, 2px) skew(-10deg);
    }
}

/*
* ======== HEADER NAVIGATION ========
*/
.header-nav {
    display: block;
    overflow: hidden;
    width: 100%;
    position: absolute;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    pointer-events: all;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    width: calc(100% - 2rem);
    padding: 1rem;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.site-nav__link {
    display: inline-block;
    line-height: 1;
    position: relative;
    min-width: 100px;

    a {
        font-family: "Suranna";
        font-size: 24px;
        padding: 0.5rem 1rem;
        text-decoration: none;
        color: #fff;
        position: relative;
        display: inline-block;
    }
}

.site-nav__link a:before {
    content: "";
    display: block;
    background-image: url(assets/nav-star-hover-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 23px;
    height: 26px;
    position: absolute;
    top: -12px;
    bottom: auto;
    left: -8px;
    right: auto;
    margin: auto;
    opacity: 0;
    transition: 0.2s ease opacity;
    animation-name: bounce-1;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.site-nav__link a:after {
    content: "";
    display: block;
    background-image: url(assets/nav-star-hover.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 15px;
    position: absolute;
    top: auto;
    bottom: -8px;
    left: auto;
    right: -2px;
    margin: auto;
    opacity: 0;
    transition: 0.2s ease opacity;
    animation-name: bounce-2;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.site-nav__link a:hover:before,
.site-nav__link a:hover:after {
    opacity: 1;
}

@keyframes bounce-1 {
    from {
        transform: translateY(-2px);
    }
    to {
        transform: translateY(2px);
    }
}

@keyframes bounce-2 {
    from {
        transform: translateY(2px);
    }
    to {
        transform: translateY(-2px);
    }
}

.site-nav__link.is-active a:before,
.site-nav__link.is-active a:after {
    opacity: 1;
    animation: none;
}

.logo {
    display: inline-block;
    position: relative;

    img {
        width: 54px;
        height: 75px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: opacity 0.5s ease;
    }
    
    &:before {
        content: "";
        display: block;
        background-image: url(assets/JC_Logo_Filled.png);
        width: 54px;
        height: 75px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        bottom: 4px;
        left: 0;
        right: 0;
        margin: auto;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }
}

.logo:hover img {
    opacity: 0;
}

.logo:hover:before {
    opacity: 1
}

/*
* ======== HERO ========
*/
#hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: #2d0e24;
    z-index: -1;
    pointer-events: all;
}

.hero-gallery {
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url(assets/gradient-desktop.gif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
}

.hero-content {
    text-align: center;
    max-width: 1160px;
    height: fit-content;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 1rem;
}

.hero-scroll {
    width: 21px;
    height: 40px;
    position: absolute;
    top: auto;
    bottom: 5rem;
    left: 0;
    right: 0;
    margin: auto;
}

.hero-scroll .btn {
    background-image: url(assets/hero-scroll-arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 21px;
    height: 40px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation-name: bounce-3;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes bounce-3 {
    0% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(5px);
    }
}

/*
* ======== MARQUEE ========
*/
.marquee-content {
    max-width: none;
    overflow: hidden;
    position: relative;
    pointer-events: all;
    padding-top: 5rem;
    padding-bottom: 0;
    
    .marquee-nbsp {
        padding-right: 4rem;
    }
    
    h1 {
        white-space: nowrap;
        transition: transform 0.1s ease-out;
    }
}


/*
* ======== BIO ========
*/
#bio {
    padding: 5rem 1.5rem 4.5rem;
    display: flex;
    align-items: center;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    pointer-events: all;
    overflow: visible;


    .col {
        display: inline-block;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        overflow: visible;
    }

    .col-1 {
        width: 40%;
        text-align: right;
        position: relative;
    }

    .col-2 {
        width: 60%;
        text-align: left;
    }

    .pro-pic {
        width: 100%;
    }
}

/*
* ======== ONE COLUMN ========
*/
.one-column {
    position: relative;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 5rem 1.5rem 3rem;
    pointer-events: all;
}

#documents .one-column {
    padding-top: 0;
}

#websites {
    padding-bottom: 3rem
}

/*
* ======== CARDS ========
*/
.web-cards {
    position: relative;
    display: inline-block;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    pointer-events: all;
    font-size: 0;
}

.web-cards .col {
    width: calc(33.33% - 3rem);
    display: inline-block;
    position: relative;
    pointer-events: all;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-bottom: 1.5rem;
    vertical-align: top;
}

.card-media {
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.card-media:hover {
    transform: scale(0.95) !important;
}

.card-image {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;   
    width: 100%;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

/*
* ======== VIDEOS ========
*/
.split {
    position: relative;
    display: flex;
    align-items: center;
    max-width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    pointer-events: all;
}

.split-col {
    width: 50%;
    display: inline-block;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.split-col__video video {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.split-content {
    max-width: 80%;
}

/*
* ======== TRI PANEL ========
*/
.tri-panel {
    position: relative;
    display: flex;
    align-items: center;
    max-width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
    pointer-events: all;
}

.tri-panel .col {
    width: 33.33%;
    display: inline-block;
    position: relative;
    pointer-events: all;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.tri-panel video {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.tri-panel__media {
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.tri-panel__media:hover {
    transform: scale(0.95) !important;
}

#videos .tri-panel + .one-column {
    padding-top: 3rem;
}

/*
* ======== TWO PANEL ========
*/
.two-panel {
    position: relative;
    display: flex;
    max-width: 1160px;
    width: calc(100% - 3rem);
    margin: 0 auto;
    pointer-events: all;
    padding-top: 3rem;
}

.two-panel .col {
    width: 50%;
    display: inline-block;
    position: relative;
    pointer-events: all;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    vertical-align: top;
}

.two-panel img {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

/*
* ======== COLLAGE ========
*/
#branding {
    overflow: hidden;
    position: relative;
}

#branding .one-column {
    padding-top: 5rem;
    padding-bottom: 1rem;
}

.collage {
    display: grid;
    grid-template-columns: 45% 27.5% 27.5%;
    position: relative;
    pointer-events: all;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.5rem;
    padding: 1.5rem;
    padding-bottom: 6rem;
}

.collage .card-media {
    position: relative;
    margin: auto;
}

.collage-image {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    width: 100%;
    height: auto;
}

/* parlay cafe */
.collage-1 {
    transform: translate(1.5rem, 3rem);
}

/* james gate */
.collage-3 {
    transform: translate(-1.5rem, -1.5rem);
}

/* someone say */
.collage-2 {
    margin-top: auto;
    margin-bottom: 0;
    transform: translate(0, 6rem);
    z-index: 1;
}


/*
* ========  FOOTER ========
*/
footer {
    pointer-events: all;
    position: relative;
    padding: 8px;
    background-color: #eae1e1;
    text-align: center;
}

.credit p {
    font-size: 14px;
    margin-bottom: 0;
}




/*
* ========  CONTACT ========
*/
.contact-template {
    .header-nav {
        position: relative;
    }
    
    .site-nav__link a {
        color: #2d0e24;
    }
    
    .site-nav__link a:before {
        background-image: url(assets/purple-star-hover.png);
    }

    .site-nav__link a:after {
        background-image: url(assets/purple-star-hover-2.png);
    }
    
    .logo:before {
        background-image: url(assets/JC_Logo_Filled_Purple.png);
    }
}

#contact .one-column {
    min-height: calc(100vh - 255px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    position: relative;
}

.contact-form .row {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #2d0e24;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
    
    p {
        margin-bottom: 0;
    }
}

.contact-form .row-3 {
    border-bottom: 0;
}

.contact-form .row img {
    position: absolute;
    width: 250px;
    height: 250px;
    opacity: 0;
    z-index: 2;
    border-radius: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    pointer-events: none;
    transition: 
        transform 0.1s ease,
        opacity 0.5s ease-in-out 0.1s;
        
}

.contact-form .row:hover img {
    opacity: 1;
}




/*
* ======== ABOUT ========
*/
.about-template {
    #hero {
        height: 75vh;
    }
    
    .hero-image {
        background-image: url(assets/cross-walk.gif);
        background-position: 50% 75%;
    }
    
    .header-nav {
        background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    }
}

.two-column {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 4.5rem;
    display: flex;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    pointer-events: all;
    
    .col {
        display: inline-block;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .col-1 {
        width: 30%;
        text-align: right;
    }
    
    .col-2 {
        width: 70%;
        padding-top: 1rem;
    }
    
    p + p {
        margin-top: 2.5rem;
    }
}

/* GLOBE */   
.globe {
    width: 160px;
    height: 160px;
    position: absolute;
    top: auto;
    left: auto;
    right: 1rem;
    bottom: -1rem;
}

/* EYE */
.eye {
    width: 121px;
    height: 60px;
    margin-top: calc((60px + 1.5rem) * -1);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

/* PORTRAIT */
.portrait {
    width: 110px;
    height: 135px;   
    margin: 1rem auto 0;
}

.illustration.revealable {
    opacity: 0;
}

.illustration.revealed {
    opacity: 1;
    transform: scaleX(0);
    animation: jiggle 0.5s ease-out forwards 1s;
}

@keyframes jiggle {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
    
  40% {
    opacity: 1;
    transform: scaleY(1.3);
  }
    
  60% {
    transform: scaleY(0.7);
  }
    
  80% {
    transform: scaleY(1.1);
  }
    
  100% {
    transform: scaleY(1);
  }
}




/*
* ======== LOAD-IN ANIMATIONS ========
*/
.hero-image {
    opacity: 0;
    animation-name: fade-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.site-nav__link, .hero-content h1, .hero-content h3 {
    opacity: 0;
    animation-name: float-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 1s;
}

.contact-template .site-nav__link,
.about-template .site-nav__link {
    animation: none;
    opacity: 1;
}

.hero-content h1 {
    animation-delay: 1.75s;
}

.hero-content h3 {
    animation-delay: 2s;
}

.hero-scroll {
    opacity: 0;
    animation-name: rotate-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 2.25s;
}

.marquee-content h1 {
    opacity: 0;
}

.marquee-content.revealed h1 {
    animation-name: fade-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0.5s;
}

#bio .col-1 .pro-pic {
    transform: scale(0);
}

#bio .col-1 .pro-pic.revealed {
    animation-name: pop-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;    
}

#bio .col-2 h2,
#bio .col-2 p {
    opacity: 0;
}

#bio .col-2.revealed h2,
#bio .col-2.revealed p {
    animation-name: slide-in;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0.5s;
}

#bio .col-2.revealed p {
    animation-duration: 0.25s;
    animation-delay: 0.75s;
}

.one-column {
    opacity: 0;
}

.one-column.revealed {
    animation-name: float-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0s;
}

.web-cards img {
    transform: scale(0);
}

.web-cards .col.revealed img {
    animation-name: pop-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
}

.web-cards .col-1.revealed img {
    animation-delay: 0.25s;    
}

.web-cards .col-2.revealed img {
    animation-delay: 0.75s;    
}

.web-cards .col-3.revealed img {
    animation-delay: 1.25s;    
}

.web-cards .card-heading {
    opacity: 0;
}

.web-cards .col.revealed .card-heading {
    animation-name: slide-in;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0s;
}

.web-cards .col-1.revealed .card-heading {
    animation-delay: 0.75s;    
}

.web-cards .col-2.revealed .card-heading {
    animation-delay: 1.25s;    
}

.web-cards .col-3.revealed .card-heading {
    animation-delay: 1.75s;    
}

.web-cards .card-subheading {
    opacity: 0;
}

.web-cards .col.revealed .card-subheading {
    animation-name: slide-in;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0s;
}

.web-cards .col-1.revealed .card-subheading {
    animation-delay: 1s;    
}

.web-cards .col-2.revealed .card-subheading {
    animation-delay: 1.5s;    
}

.web-cards .col-3.revealed .card-subheading {
    animation-delay: 2s;    
}

.split video {
    transform: scale(0);
}

.split.revealed video {
    animation-name: pop-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
}

.split .split-heading,
.split p {
    opacity: 0;
}

.split.revealed .split-heading,
.split.revealed p {    
    animation-name: slide-in;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 1s;
}

.split.revealed p {
    animation-delay: 1.25s;
}

.tri-panel video {
    transform: scale(0); 
}

.tri-panel.revealed video {
    animation-name: pop-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
}

.tri-panel.revealed .col-1 video {
    animation-delay: 0.25s;
}

.tri-panel.revealed .col-2 video {
    animation-delay: 0.75s;    
}

.tri-panel.revealed .col-3 video {
    animation-delay: 1.25s;    
}

.two-panel img {
    transform: scale(0);
}

.two-panel.revealed img {
    animation-name: pop-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
}

.two-panel.revealed .col-1 img {
    animation-delay: 0.25s;
}

.two-panel.revealed .col-2 img {
    animation-delay: 0.5s;
}

.two-panel .card-heading,
.two-panel .card-subheading {
    opacity: 0;
}

.two-panel.revealed .card-heading,
.two-panel.revealed .card-subheading {  
    animation-name: slide-in;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0s;
}

.two-panel.revealed .col-1 .card-heading {
    animation-delay: 0.75s;
}

.two-panel.revealed .col-2 .card-heading {
    animation-delay: 1.25s;
}

.two-panel.revealed .col-1 .card-subheading {
    animation-delay: 1s;
}

.two-panel.revealed .col-2 .card-subheading {
    animation-delay: 1.5s;
}

.collage img {
    transform: scale(0);    
}

.collage.revealed img {
    animation-name: pop-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
}

.collage.revealed .collage-1 img {
    animation-delay: 0.25s;
}

.collage.revealed .collage-3 img {
    animation-delay: 0.75s;    
}

.collage.revealed .collage-2 img {
    animation-delay: 1.25s;    
}

.two-column .col {
    opacity: 0;
}

.two-column .col-1.revealed {
    animation-name: float-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0s;
}

.two-column .col-2.revealed {
    animation-name: slide-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 1s;
}


@keyframes fade-in {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}

@keyframes float-in {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate-in {
    from {
        transform: rotate(90deg);
        opacity: 0;
    }
    
    to {
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes pop-in {
    0% {
        transform: scale(0);
    }
    
    75% {
        transform: scale(1.1);
    }
    
    100% {
        transform: scale(1);
    }
}

@keyframes slide-in {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/*
* ======== iPAD BREAKPOINT ========
*/
@media (max-width: 1160px) {
h2 {
    font-size: 50px
}
    
#bio {
    .col-1 {
        width: 50%;
    }
    
    .col-2 {
        width: 50%;
    }
}

.web-cards {    
    .col {
        width: calc(50% - 3rem);
    }
}
    
.split, .two-column {
    display: block;
    
    .col, .split-col {
        width: 100%;
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
    
    .split-col__video {
        margin-bottom: 1.5rem;
    }
}
    
.tri-panel, .two-panel {
    max-width: calc(100% - 1.5rem);
    
    .col {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
.collage {
    padding-left: 0;
    padding-right: 0;
}
    
.two-panel {
    margin-bottom: 3rem
}
    
.two-column {
    padding: 3rem 1.5rem 2.5rem;
    
    .col-1 {
        text-align: center;
    }
}


/*
* ======== MOBILE BREAKPOINT ========
*/
@media (max-width: 768px) {
/* MOBILE NAV */
.header-nav {
    padding-top: 0;
    padding-bottom: 0;
}
    
.site-nav {
    justify-content: space-between;
    margin: 0 auto;
}
    
.site-nav__link a:before {
    top: -6px;
}

.site-nav__link a:after {
    bottom: -2px;
}
    
.logo img {
    width: 48.25px;
    height: 67px;
}

/* MOBILE HERO */
#hero {
    height: calc(100vh - 75px);
}   
    
.hero-image {
    background-image: url(assets/gradient-mobile.gif);
}
    
.hero-scroll {
    bottom: 2rem
}
    
.about-template {
    #hero {
        height: 40vh;
    }
}

/* MOBILE MARQUEE */
.marquee-content {
    padding-top: 3rem;
}
.marquee-content {
    .marquee-nbsp {
        padding-right: 1rem;
    }
}

/* MOBILE COLUMNS */
#bio, .web-cards, .tri-panel, .two-panel, .two-column .split {
    display: block;
    
    .col, .split-col {
        width: 100%;
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
}
       

/* MOBILE BIO */
#bio {
    padding-top: 3rem;
    padding-bottom: 2rem;
        
    .col-1 {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .col-2 {
        padding-top: 3rem;
        text-align: center;
        
        p {
            text-align: left;
        }
    }
}

/* MOBILE WEBSITES */
#websites {
    padding-bottom: 0
}
    
.one-column {
    padding-top: 0;
    padding-bottom: 2.5rem
}
    
.one-column p {
    text-align: left
}

.web-cards .col {
    margin-bottom: 2rem;
}

/* MOBILE MOGRPAHS */  
#videos .one-column {
    padding-top: 0;
}
    
.split {
    margin-bottom: 2.5rem;
}
    
.split-content {
    max-width: none;
}
     
.tri-panel {
    padding-top: 0;
}
    
#videos .tri-panel + .one-column {
    padding-top: 0;
}
    
.two-panel .col {
    margin-bottom: 2.5rem;
}
    
#mo-graphs .tri-panel {
    max-width: calc(100% - 3rem);
        
    .col {
        margin-bottom: 1.5rem
    }
}
    
#mo-graphs .two-panel {
    padding-top: 0;
}


/* MOBILE BRANDING */
#branding .one-column {
    padding-top: 0;
}
    
.collage {
    padding: 0 0 3rem;
}
    
.collage-3 {
    transform: translate(-1.5rem, 1.5rem);
}

/* MOBILE CONTACT */
#contact {
    min-height: 80vh;
    overflow-x: hidden;
}
    
#contact .one-column {
    min-height: calc(100vh - 212px);
}
    
.contact-form .row img {
    width: 150px;
    height: 150px;
}
    
/* MOBILE ILLUSTRATIONS */
.globe {
    width: 120px;
    height: 120px;
    bottom: -1.5rem;
}
    
.eye {
    width: 91px;
    height: 45px;    
}
    
.portrait {
    width: 90px;
    height: 110px;
}
    
/* MOBILE FONT SIZES */
.hero-content h1 {
    font-size: 40px;
}
    
.hero-content h3 {
    font-size: 22px;
}
    
h1 {
    font-size: 36px;
}
    
h2 {
    font-size: 40px
}
    
p {
    font-size: 17px;
    line-height: 1.6;
}

.split-heading, .tri-panel__heading, .contact-form h2, .card-heading {
    font-size: 36px;
}
}


