/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
@-ms-viewport {
    width: device-width;
    zoom: 1;
}

/* ==========================================================================
    Base styles: opinionated defaults
    ========================================================================== */
html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 62.5%;
    line-height: 1.4;
}

/*
  * Remove text-shadow in selection highlight: h5bp.com/i
  * These selection rule sets have to be separate.
  * Customize the background color to match your design.
  */
:focus {
    outline: none;
}

::selection {
    background: #efdb2f;
    text-shadow: none;
}

/*
  * A better looking default horizontal rule
  */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
  * Remove the gap between images, videos, audio and canvas and the bottom of
  * their containers: h5bp.com/i/440
  */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
  * Remove default fieldset styles.
  */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
  * Allow only vertical resizing of textareas.
  */

textarea {
    resize: vertical;
}

a:active {
    outline: none !important;
}

/* ==========================================================================
    Browse Happy prompt
    ========================================================================== */

.browsehappy {
    margin: 0 auto;
    background: #f3f3f3;
    color: #1c3868;
    height: auto;
    font-family: "PT Sans Caption", arial;
    font-size: 3em;
    padding: 1.5em 3em 3em 3em;
    width: 50%;
    position: fixed;
    left: 17%;
    top: 3em;
    border: solid 0.06em #dadcde;
    z-index: 999999;
}

.browsehappy p {
    clear: left;
}

.browsehappy a {
    color: #7e1421;
}

.browsehappy a:hover {
    text-decoration: underline;
}

.browsehappy img {
    display: block;
    margin: 0;
}

/* typography */
h1 {
    font: 700 2.8rem "Oswald";
}

h2 {
    font-family: "Oswald";
}

p {
    font-family: "Quicksand";
    font-weight: 400;
    font-size: 1.6rem;
}

a {
    color: #5d5d5d;
    font-weight: 700;
    border-bottom: solid 1px #aaa;
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
}

a:hover {
    background-color: #5d5d5d;
    color: #fafafa;
}

.flex-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* header */
.fixed-header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100vw;
    position: fixed;
    z-index: -1;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100vw;
    z-index: 20;
}

.nav a {
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #39312f;
    font: 700 1.6em "Quicksand";
    color: #f7f3ef;
    position: fixed;
    top: -150%;
    height: 3em;
    width: 3em;
    padding: 1em;
    border-radius: 50%;
    border: solid 4px #39312f;
    background: url("../img/work.svg") no-repeat center -20em #39312f;
    cursor: pointer;
    -webkit-transition: top 2s ease-in-out, border 2s linear,
        background-color 0.6s ease, font-size 0.6s ease-in-out,
        background-position 0.6s ease, -webkit-transform 0.6s ease-in-out;
    transition: top 2s ease-in-out, border 2s linear, background-color 0.6s ease,
        font-size 0.6s ease-in-out, background-position 0.6s ease,
        -webkit-transform 0.6s ease-in-out;
    transition: top 2s ease-in-out, border 2s linear, background-color 0.6s ease,
        transform 0.6s ease-in-out, font-size 0.6s ease-in-out,
        background-position 0.6s ease;
    transition: top 2s ease-in-out, border 2s linear, background-color 0.6s ease,
        transform 0.6s ease-in-out, font-size 0.6s ease-in-out,
        background-position 0.6s ease, -webkit-transform 0.6s ease-in-out;
    -webkit-animation: ripple 24s ease infinite;
    animation: ripple 24s ease infinite;
}

.nav a:hover {
    -webkit-box-shadow: 1px 1px 5px -1px #39312f;
    box-shadow: 1px 1px 5px -1px #39312f;
    font-size: 1.8em;
    text-shadow: 1px 1px 1px #000;
    background-position-y: center;
    text-indent: -100em;
}

.nav .enter.resume-link {
    top: 68%;
    border-color: #cd3682;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    background-image: url("../img/resume.svg");
    background-size: 3.5em;
    animation-direction: reverse;
}

.no-touch .nav .resume-link:hover {
    background-color: #cd3682;
}

.nav .enter.port-link {
    left: 25%;
    top: 18%;
    border-color: #efdb2f;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.no-touch .nav .port-link:hover {
    background-color: #efdb2f;
}

.nav .enter.contact-link {
    top: 30%;
    left: 70%;
    border-color: #008db5;
    background-image: url("../img/contact.svg");
    background-size: 4.2em;
}

.no-touch .nav .contact-link:hover {
    background-color: #008db5;
}

.stuck {
    position: fixed;
    top: -2px;
    background-color: #39312f;
    z-index: 999;
    -webkit-transition: top 0.3s linear;
    transition: top 0.3s linear;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.stuck.show-end {
    top: -20px;
}

.nav.stuck .enter {
    position: relative;
    left: auto;
    right: auto;
    height: auto;
    width: auto;
    border-radius: 0;
    border-width: 0 0 7px 0;
    top: 0;
    -webkit-animation: none;
    animation: none;
}

.nav.stuck .enter:hover {
    font-size: 1.6em;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 999;
    text-indent: 0;
    background-position-y: -20em;
    background-size: 0;
}

.touch .nav.stuck .enter:active,
.touch .nav.stuck .enter:hover {
    -webkit-transform: none;
    transform: none;
    background-color: #39312f;
}

.drip-wrap {
    width: 21vw;
    margin: 0 auto;
    z-index: -1;
    justify-self: flex-start;
    margin-bottom: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    left: 38vw;
}

.trigger .drip-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    top: -5em;
    width: 20em;
}

.drip-wrap>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: -1;
}

.drip {
    display: block;
    z-index: -1;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: black;
    -webkit-animation: dripAnime 17s ease infinite;
    animation: dripAnime 17s ease infinite;
    position: relative;
}

.trigger .drip {
    -webkit-animation: dripAnimeScroll 17s ease-in-out infinite;
    animation: dripAnimeScroll 17s ease-in-out infinite;
    width: 1em;
    top: 0;
}

.drip-tip {
    width: 1em;
    height: 1em;
    z-index: -1;
    border-radius: 50%;
    -webkit-box-shadow: 1px 1px 3px -1px #000;
    box-shadow: 1px 1px 3px -1px #000;
    display: block;
    -webkit-animation: dripAnimeTip 17s ease-in-out infinite;
    animation: dripAnimeTip 17s ease-in-out infinite;
}

.trigger .drip-tip {
    -webkit-transform-origin: top;
    transform-origin: top;
    width: 2rem;
    height: 2rem;
    -webkit-animation: dripAnimeTipScroll 17s ease-in-out infinite;
    animation: dripAnimeTipScroll 17s ease-in-out infinite;
}

.blue-drip,
.blue {
    background-color: #008db5;
}

.pink-drip,
.pink,
.trigger .pink-drip,
.trigger .pink {
    background-color: #cd3682;
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.yellow-drip,
.yellow,
.trigger .yellow-drip,
.trigger .yellow {
    background-color: #efdb2f;
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.hero-welcome {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}

.trigger .hero-welcome svg {
    -webkit-animation: scrollTranslate 2s ease;
    animation: scrollTranslate 2s ease;
    opacity: 0;
}

.hero-welcome svg {
    width: 30vw;
    height: 30vh;
    z-index: 7;
    position: fixed;
    top: 32vh;
    -webkit-animation: logoEnter 1s ease-in-out;
    animation: logoEnter 1s ease-in-out;
}

.scroll-down {
    position: fixed;
    bottom: -5em;
    left: 0;
    padding: 1em;
    font: 500 1.4em "Quicksand";
    width: 100%;
    text-align: center;
    transition: bottom 0.6s ease-in-out, left 1s ease;
    transition-delay: 2s;
    opacity: 0.5;
}

.scroll-down.enter {
    bottom: -0.7em;
}

.trigger .scroll-down.enter {
    left: -100%;
    z-index: -1;
    opacity: 0;
}

.animate-arrw {
    animation: pinDrop 2s linear infinite;
    display: inline-block;
    font-size: 1.6em;
}

section {
    min-height: 80vh;
    z-index: 2;
}

.back-top {
    position: fixed;
    bottom: -30%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5em;
    -webkit-transition: bottom 1s ease;
    transition: bottom 1s ease;
    border: none;
    background-color: rgba(247, 243, 239, 0.7);
    right: 0.1em;
    border-radius: 50%;
    height: 4em;
    width: 4em;
    color: #39312f;
    box-shadow: 1px 1px 4px -1px rgba(57, 49, 47, 0.7);
    transition: bottom 0.7s linear, right 0.7s linear, background-color 0.5s ease;
}

.back-top span {
    white-space: nowrap;
    text-align: center;
}

.back-top span:first-child {
    font-size: 3em;
}

.back-top span:last-child {
    background-color: rgba(247, 243, 239, 0.7);
    padding: 0.3em 1em;
    font-family: "Quicksand";
}

.scrolled .back-top {
    bottom: 0;
    z-index: 99;
}

/*

 ----------resume---------

 */
.resume {
    padding: 1em;
    max-width: 2080px;
}

.resume-header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.resume-header h1 {
    margin-top: 0;
    padding: 0;
    margin-right: auto;
}

.contact-resume {
    list-style: none;
    padding: 0.6rem 1rem;
    border-top-left-radius: 3px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: rgba(247, 243, 239, 0.7);
    font: 500 1.4rem "Quicksand";
    margin-left: auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.contact-li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.contact-li>* {
    margin: 0.3em 0.5rem;
    display: block;
}

.email {
    background: url(../img/contact.svg) no-repeat right center;
    background-size: contain;
    padding-right: 2em;
}

.resume .address-li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
}

.contact-resume .address {
    padding: 0.3rem;
}

.location-svg {
    width: 1.6em;
    margin-left: 0.2em;
    -webkit-animation: pinDrop 2s linear infinite;
    animation: pinDrop 2s linear infinite;
}

.location-svg .white {
    fill: rgba(247, 243, 239, 0.9);
}

.location-svg .black {
    fill: #39312f;
}

.resume aside {
    position: relative;
    background-color: rgba(243, 243, 243, 0.7);
    border-radius: 3px;
}

.resume-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.resume aside>* {
    padding: 1rem;
}

.resume h2 {
    position: -webkit-sticky;
    position: sticky;
    top: 5.5rem;
    margin-top: 0;
    color: rgba(247, 243, 239, 1);
    background-color: #39312f;
    border-bottom: solid 2px #39312f;
    border-radius: 3px 3px 0 0;
}

.resume-line {
    border-bottom: solid 8px #fff;
    margin-bottom: 0.2em;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.date-address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.experience ul,
.skills ul {
    font-family: "Quicksand";
    font-size: 1.4rem;
    padding-left: 1.5rem;
}

.skills h3 {
    font: 500 1.3em arial;
    margin: 0;
    padding: 0 1rem 0.2em;
    border-bottom: solid 1px rgba(57, 49, 47, 0.4);
    color: rgba(57, 49, 47, 0.7);
}

.resume .skills ul {
    padding-left: 2rem;
    margin: 0.2rem;
}

.resume li {
    margin: 0.5rem 0;
}

.resume-line header {
    font-weight: 700;
    font-size: 1.2em;
}
.earlier-roles-header{
    width: 100%;
}
.title {
    width: 100%;
}

.desc {
    width: 100%;
}

.resume-line span {
    display: block;
}

/* work */
.work {
    position: relative;
    z-index: 20;
}

.work h1 {
    color: #f7f3ef;
    background-color: #39312f;
    border-bottom: solid 1px #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 1rem;
    z-index: 5;
}

.work h1 {
    -webkit-box-shadow: 0 4px 4px 0 #39312f;
    box-shadow: 0 4px 4px 0 #39312f;
    position: -webkit-sticky;
    position: sticky;
    top: 4.6rem;
}

.work h3 {
    font: 500 2.5em "Oswald";
    width: 100%;
    margin: 0 0 1em;
    -webkit-transform: translateX(-100%) scaleX(0);
    transform: translateX(-100%) scaleX(0);
    -webkit-transition: -webkit-transform 1s linear;
    transition: -webkit-transform 1s linear;
    transition: transform 1s linear;
    transition: transform 1s linear, -webkit-transform 1s linear;
}

.work .animated h3 {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
}

.work-aside p {
    font-size: 2em;
    width: 100%;
    margin-top: 2em;
}

.idle-site.work-aside p:last-child {
    margin-top: 0;
}

.work-aside ul {
    width: 100%;
    font: 400 1.9em "Quicksand";
    margin: 0;
}

.work-aside {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 3px;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    background-color: rgba(247, 243, 239,.9);
    padding: 2em 1em 5em;
    overflow: hidden;
    margin: 10vh auto;
    max-width: 228em;
    border: solid 10px #39312f;
    -webkit-transition: opacity 0.8s linear, -webkit-transform 0.5s ease;
    transition: opacity 0.8s linear, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.8s linear;
    transition: transform 0.5s ease, opacity 0.8s linear,
        -webkit-transform 0.5s ease;
}

a {
    cursor: pointer;
}

.cards a {
    display: block;
    margin: 1em auto;
    padding: 0.5em 0 0.2em;
    font-size: 1.9rem;
    text-align: center;
}

.cards a:hover {
    border-radius: 3px;
    background-color: #39312f;
}

.proto-wrap {
    display: none;
}

.open-proto {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f7f3ef;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999999999999999999999;
    overflow: hidden;
}

.close {
    position: absolute;
    right: 0;
    top: 0;
    font: 700 3em "Quicksand";
    padding: 0.8rem;
    border: none;
    color: #cd3682;
    border: solid 3px #39312f;
    border-color: transparent transparent #39312f #39312f;
    background-color: #fff;
}

.open-proto iframe {
    max-width: 80vw;
    max-height: 99vh;
    border: solid 8px #f3f3f3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px -1px #39312f;
}

.open-proto-body .nav,
.open-proto-body .back-top {
    display: none;
}

.open-proto-body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

body {
    max-width: 3000px;
    margin: 0 auto;
}

/* .work-aside.animated{
     transform: translateY(0);
     opacity: 1;
 } */
.work-aside:first-of-type {
    margin-top: 0;
}

.img-wrap {
    position: absolute;
    padding: 10px 10px 0;
    background-color: rgba(234,229,225,.7);
    background-image: url("../img/bgShape.svg");
    background-size: 150%;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 27px -1px rgba(73,65,60,.5);
    box-shadow: 1px 1px 27px 7px rgba(73,65,60,.1),0 -2px 47px -1px rgba(73,65,60,.2);
    position: relative;
    display: block;
    margin: 1em 0;
    z-index: 2;
    -webkit-transform: translateY(135%);
    transform: translateY(135%);
    opacity: 0;
    -webkit-transition: opacity 0.8s linear, -webkit-transform 1s ease;
    transition: opacity 0.8s linear, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity 0.8s linear;
    transition: transform 1s ease, opacity 0.8s linear, -webkit-transform 1s ease;
}
.img-wrap:before{
    z-index: -10;
    content: " ";
    position: absolute;
    backdrop-filter: blur(100px);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(234,229,225,.4);
}
.idle-logo {
    width: 40%;
    height: auto;
    margin: 1em auto;
    display: block;
    max-width: 100px;
}
.desk-wrap .idle-logo{
    width: 20%;
    margin: auto;
    padding: 20px 0 10px;
}
.idle-wrap .content-fill {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-image: url("../img/idle1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    background-color: #eee;
    transition: background .05s linear;
    -webkit-animation: bgImage 120s linear infinite;
    animation: bgImage 120s linear infinite;
}

.idle-wrap.mob-wrap .content-fill {
    min-height: 220px;
    min-width: 100px;
}

.idle-wrap.tablet-wrap .content-fill {
    width: 100%;
    height: 100%;
    min-height: 230px;
    min-width: 170px;
    -webkit-animation: bgImageTab 90s linear infinite;
    animation: bgImageTab 90s linear infinite;
}

.idle-wrap.desk-wrap .content-fill {
    -webkit-animation: bgImageDesk 80s linear infinite;
    animation: bgImageDesk 80s linear infinite;
}

.idle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 0;
}

.idle-header object {
    height: 20px;
}

.idle-header .idle-pin {
    height: 15px,;
}

.mob-wrap.idle-wrap .content-fill {
    flex-direction: column-reverse;
}

.mob-wrap .idle-header {
    flex-direction: row-reverse;
    padding-bottom: 6px;
}

.mob-wrap .idle-header object {
    max-width: 14px;
    max-height: 14px;
}

.idle-header nav {
    font: 700 0.8em "Quicksand";
    color: #f1f4e9;
    display: flex;
}

.idle-header nav span {
    display: block;
    padding: 0.7em 1em;
    margin-right: 5px;
    background-color: rgba(250, 250, 250, 0.1);
    border-left: solid 2px #b6d8cb;
    border-radius: 3px 5px 5px 3px;
}

.idle-header nav span:first-child {
    border-left-color: #99041b;
}

.idle-menu-mob {
    width: 20px;
    display: flex;
}

.idle-footer {
    display: flex;
    justify-content: flex-end;
    padding: 15px 5px;
}

.idle-footer object {
    height: 15px;
    padding: 0 5px;
}

@-webkit-keyframes bgImage {
    0% {
        background-position: center left;
        background-size: auto 105%;
    }

    25% {
        background-image: url("../img/idle2.png");
        background-position: top right;
        background-size: auto 110%;
    }

    50% {
        background-image: url("../img/idleSnow.png");

        background-position: center;
        background-size: auto 100%;
    }

    75% {
        background-image: url("../img/idleSunset.png");

        background-position: right center;
        background-size: auto 120%;
    }

    100% {
        background-image: url("../img/idleBarn.png");

        background-position: bottom center;
        background-size: auto 100%;
    }
}

@keyframes bgImage {
    0% {
        background-position: center left;
        background-size: auto 105%;
    }

    25% {
        background-image: url("../img/idle2.png");

        background-position: top right;
        background-size: auto 110%;
    }

    50% {
        background-image: url("../img/idleSnow.png");

        background-position: center;
        background-size: auto 100%;
    }

    75% {
        background-image: url("../img/idleSunset.png");

        background-position: right center;
        background-size: auto 120%;
    }

    100% {
        background-image: url("../img/idleBarn.png");

        background-position: bottom center;
        background-size: auto 100%;
    }
}

@-webkit-keyframes bgImageTab {
    0% {
        background-image: url("../img/idle2.png");

        background-position: center left;
        background-size: auto 105%;
    }

    25% {
        background-image: url("../img/idleSunset.png");

        background-position: top right;
        background-size: auto 110%;
    }

    50% {
        background-image: url("../img/idleSnow.png");

        background-position: left center;
        background-size: auto 100%;
    }

    75% {
        background-image: url("../img/idle1.png");

        background-position: right center;
        background-size: auto 120%;
    }

    100% {
        background-image: url("../img/idleBarn.png");
        transition: background 10s ease;
        background-position: bottom center;
        background-size: auto 100%;
    }
}

@keyframes bgImageTab {
    0% {
        background-image: url("../img/idle2.png");

        background-position: center left;
        background-size: auto 105%;
    }

    25% {
        background-image: url("../img/idleSunset.png");

        background-position: top right;
        background-size: auto 110%;
    }

    50% {
        background-image: url("../img/idleSnow.png");

        background-position: left center;
        background-size: auto 100%;
    }

    75% {
        background-image: url("../img/idle1.png");

        background-position: right center;
        background-size: auto 120%;
    }

    100% {
        background-image: url("../img/idleBarn.png");
        transition: background 10s ease;
        background-position: bottom center;
        background-size: auto 100%;
    }
}

@-webkit-keyframes bgImageDesk {
    0% {
        background-image: url("../img/idleSnow.png");
        background-position: right center;
        background-size: 130% auto;
    }

    13% {
        background-position: 25% top;
        background-size: 115% auto;
    }

    25% {
        background-image: url("../img/idleBarn.png");

        background-position: center bottom;
        background-size: 105% auto;
    }

    37% {
        background-position: 10% bottom;
        background-size: 115% auto;
    }

    50% {
        background-image: url("../img/idle1.png");
        background-position: left bottom;
        background-size: 130% auto;
    }

    63% {
        background-position: 80% bottom;
        background-size: 150% auto;
    }

    75% {
        background-image: url("../img/idleSunset.png");
        background-position: right bottom;
        background-size: 165% auto;
    }

    87% {
        background-image: url("../img/idle2.png");
        background-position: left bottom;
        background-size: 120% auto;
    }

    100% {
        background-image: url("../img/idleSnow.png");
        background-position: right bottom;
        background-size: 130% auto;
    }
}

@keyframes bgImageDesk {
    0% {
        background-image: url("../img/idleSnow.png");
        background-position: right center;
        background-size: 130% auto;
    }

    13% {
        background-position: 25% top;
        background-size: 115% auto;
    }

    25% {
        background-image: url("../img/idleBarn.png");

        background-position: center bottom;
        background-size: 105% auto;
    }

    37% {
        background-position: 10% bottom;
        background-size: 115% auto;
    }

    50% {
        background-image: url("../img/idle1.png");
        background-position: left bottom;
        background-size: 130% auto;
    }

    63% {
        background-position: 80% bottom;
        background-size: 150% auto;
    }

    75% {
        background-image: url("../img/idleSunset.png");
        background-position: right bottom;
        background-size: 165% auto;
    }

    87% {
        background-image: url("../img/idle2.png");
        background-position: left bottom;
        background-size: 120% auto;
    }

    100% {
        background-image: url("../img/idleSnow.png");
        background-position: right bottom;
        background-size: 130% auto;
    }
}

.animated .img-wrap {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    position: relative;
}

.desk-wrap {
    width: 90%;
    max-width: 600px;
    border-radius: 5px;
    overflow: visible;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 2;
    border-bottom-width: 5px;
    border-bottom-color: #000;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.desk-notch {
    position: absolute;
    display: inline;
    bottom: -4em;
    margin: 0 auto;
    overflow: hidden;
    border: solid 6em;
    border-color: transparent transparent rgba(221, 221, 221, 0.7) transparent;
    border-radius: 11px;
    z-index: -500;
    background-color: transparent;
}

.mob-wrap {
    width: 30%;
    max-width: 200px;
}

.tablet-wrap {
    width: 50%;
    max-width: 400px;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.img-wrap img {
    width: 100%;
}

.label-wrap {
    z-index: 999;
    padding: 1em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(234,229,225,.8);
    z-index: 2;
    border-top: solid 1px #ccc;
}

.label-wrap label {
    text-align: left;
    margin: 0 auto 0 1em;
    color: #777;
    font: 500 1em "Quicksand";
}

.notice .tablet-wrap .label-wrap label {
    bottom: 0.5em;
}

.notch {
    height: 1em;
    width: 1em;
    border-radius: 500%;
    background-color: #f7f3ef;
}

/* contact me */
.contact {
    min-height: 0;
    padding: 1em;
    position: fixed;
    bottom: 100%;
    height: 0;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: -100;
    -webkit-transition: opacity 0.2s ease-in-out, bottom 0.8s ease;
    transition: opacity 1s ease-in-out, bottom 1.2s ease-in-out;
}

.show-end,
.no-touch .trigger .spacer.show-end {
    opacity: 1;
}

.contact.show-end {
    bottom: 0;
    height: auto;
    z-index: -1;
}

.show-end.resume {
    background-color: #f7f3ef;
    -webkit-box-shadow: 0 3px 7px -1px #333;
    box-shadow: 0 3px 7px -1px #333;
}

#contact {
    margin-top: 120vh;
}
.heading-wrap, .p-wrap{
    background-color: rgba(247, 243, 239, 0.7);
    backdrop-filter: blur(.9);
}
.contact h1 {
    margin: 0;
    font-size: 9vw;
    color: #cd3682;
    text-shadow: 1px 1px 2px #39312f;
    padding: 0;
}

.black {
    color: #39312f;
    text-shadow: none;
}

.contact h2 {
    font: 700 8vw "Quicksand";
    margin: 0;
    color: #008db5;
    text-align: center;
    text-shadow: 1px 1px 1px #39312f;
}

.contact p {
    margin: 0.5rem;
    font-size: 1.5rem;
}

.optional {
    display: none;
}

.email-me {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    font-size: 2em;
    position: relative;
    padding: 0.3rem 0.2em 0.7rem 2.9em;
    -webkit-clip-path: margin-box;
    clip-path: margin-box;
    margin: 0.2em auto;
    border: solid 5px #e9e2b1;
    background: url("../img/contact.svg") no-repeat 0.1em 0.2em transparent;
    -webkit-box-shadow: 0 0 2px 0 rgba(57, 49, 47, 0.9);
    box-shadow: 0 0 2px 0 rgba(57, 49, 47, 0.9);
    -webkit-transition: background 0.4s ease, color 0.4s linear,
        border-color 0.3s ease-in-out;
    transition: background 0.4s ease, color 0.4s linear,
        border-color 0.3s ease-in-out;
}

.btn-drip {
    width: 33%;
    height: 30%;
    z-index: -1;
    background: black;
    display: block;
}

.btn-drip.blue {
    background-color: #008db5;
}

.link-text {
    width: 100%;
    display: block;
    z-index: 5;
}

.email-me:hover {
    background-color: rgba(250, 250, 250, 0.8);
    color: rgba(57, 49, 47, 0.9);
    background-position-y: 0;
    border-color: #fafafa;
}

.social-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 7em;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-bottom: -1em;
    margin-top: 0.7em;
}

.social-wrap a {
    border: none;
}

.social-wrap svg {
    height: 3em;
    opacity: 0.5;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.social-wrap .cls-1 {
    fill: #39312f;
}

.ig-wrap {
    display: none;
}

/* spacers */
.no-touch .spacer {
    height: 30vh;
    z-index: 99;
    background: no-repeat, repeat-x, right center, center;
    background-image: url("../img/firstimg.jpg"), url("../img/firstrepeat.jpg");
    background-repeat: no-repeat, repeat-x;
    background-position: center right, center left;
    background-size: auto 100%, auto 100%;
    background-attachment: fixed, fixed;
    background-color: #f7f3ef;
    position: relative;
    -webkit-box-shadow: 0 0 35px 1px #39312f inset;
    box-shadow: 0 0 35px 1px #39312f inset;
    -webkit-filter: sepia(0.25) grayscale(0.4);
    filter: sepia(0.25) grayscale(0.4);
    -webkit-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}

.no-touch .trigger .spacer {
    opacity: 0.9;
}

.no-touch .spacer:after {
    content: " ";
    position: absolute;
    background: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(10%, #efdb2f),
            color-stop(40%, #cd3682),
            to(#008db5));
    background: linear-gradient(to right, #efdb2f 10%, #cd3682 40%, #008db5);
    opacity: 0.6;
    width: 100%;
    height: 100%;
    display: block;
}

.no-touch .second-space {
    background-image: url("../img/face.jpg");
    background-size: auto cover;
    background-position: 0.1rem bottom;
    height: 40vh;
}

.no-touch .third-space {
    background-image: url("../img/watson.jpg");
    background-position: center;
    background-size: cover;
    height: 55vh;
    -webkit-transition: none;
    transition: none;
    -webkit-box-shadow: 0 3px 7px -1px #333;
    box-shadow: 0 3px 7px -1px #333;
}

/* animations */
@-webkit-keyframes logoEnter {
    00% {
        opacity: 0;
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }

    75% {
        opacity: 0.9;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes logoEnter {
    00% {
        opacity: 0;
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }

    75% {
        opacity: 0.9;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scrollTranslate {
    0% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-180%);
        transform: translateY(-180%);
        opacity: 0;
    }
}

@keyframes scrollTranslate {
    0% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-180%);
        transform: translateY(-180%);
        opacity: 0;
    }
}

@-webkit-keyframes dripAnime {
    0% {
        -webkit-transform: translate(0, 0) scaleY(12.5);
        transform: translate(0, 0) scaleY(12.5);
        opacity: 0.9;
    }

    25% {
        -webkit-transform: scaleY(69.5);
        transform: scaleY(69.5);
        opacity: 1;
    }

    50% {
        -webkit-transform: scaleY(70.2);
        transform: scaleY(70.2);
        opacity: 1;
    }

    75% {
        -webkit-transform: scaleY(80.8);
        transform: scaleY(80.8);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 39vh) scaleY(0.7);
        transform: translate(0, 39vh) scaleY(0.7);
        opacity: 0.8;
    }
}

@keyframes dripAnime {
    0% {
        -webkit-transform: translate(0, 0) scaleY(12.5);
        transform: translate(0, 0) scaleY(12.5);
        opacity: 0.9;
    }

    25% {
        -webkit-transform: scaleY(69.5);
        transform: scaleY(69.5);
        opacity: 1;
    }

    50% {
        -webkit-transform: scaleY(70.2);
        transform: scaleY(70.2);
        opacity: 1;
    }

    75% {
        -webkit-transform: scaleY(80.8);
        transform: scaleY(80.8);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 39vh) scaleY(0.7);
        transform: translate(0, 39vh) scaleY(0.7);
        opacity: 0.8;
    }
}

@-webkit-keyframes dripAnimeScroll {
    0% {
        -webkit-transform: translate(0, 0) scaleY(42.5);
        transform: translate(0, 0) scaleY(42.5);
    }

    25% {
        -webkit-transform: scaleY(99.5);
        transform: scaleY(99.5);
    }

    50% {
        -webkit-transform: scaleY(170.2);
        transform: scaleY(170.2);
    }

    75% {
        -webkit-transform: scaleY(280.8);
        transform: scaleY(280.8);
    }

    100% {
        -webkit-transform: translate(0, 170vh) scaleY(55.7);
        transform: translate(0, 170vh) scaleY(55.7);
    }
}

@keyframes dripAnimeScroll {
    0% {
        -webkit-transform: translate(0, 0) scaleY(42.5);
        transform: translate(0, 0) scaleY(42.5);
    }

    25% {
        -webkit-transform: scaleY(99.5);
        transform: scaleY(99.5);
    }

    50% {
        -webkit-transform: scaleY(170.2);
        transform: scaleY(170.2);
    }

    75% {
        -webkit-transform: scaleY(280.8);
        transform: scaleY(280.8);
    }

    100% {
        -webkit-transform: translate(0, 170vh) scaleY(55.7);
        transform: translate(0, 170vh) scaleY(55.7);
    }
}

@-webkit-keyframes dripAnimeTip {
    0% {
        -webkit-transform: translate(0, 1vh);
        transform: translate(0, 1vh);
        opacity: 0.9;
    }

    25% {
        -webkit-transform: translate(0, 8vh);
        transform: translate(0, 8vh);
        opacity: 1;
    }

    50% {
        -webkit-transform: translate(0, 17vh);
        transform: translate(0, 17vh);
        opacity: 1;
    }

    75% {
        -webkit-transform: translate(0, 35vh);
        transform: translate(0, 35vh);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 39vh);
        transform: translate(0, 39vh);
        opacity: 0.8;
    }
}

@keyframes dripAnimeTip {
    0% {
        -webkit-transform: translate(0, 1vh);
        transform: translate(0, 1vh);
        opacity: 0.9;
    }

    25% {
        -webkit-transform: translate(0, 8vh);
        transform: translate(0, 8vh);
        opacity: 1;
    }

    50% {
        -webkit-transform: translate(0, 17vh);
        transform: translate(0, 17vh);
        opacity: 1;
    }

    75% {
        -webkit-transform: translate(0, 35vh);
        transform: translate(0, 35vh);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 39vh);
        transform: translate(0, 39vh);
        opacity: 0.8;
    }
}

@-webkit-keyframes dripAnimeTipScroll {
    0% {
        -webkit-transform: translate(0, 1vh);
        transform: translate(0, 1vh);
    }

    25% {
        -webkit-transform: translate(0, 25vh);
        transform: translate(0, 25vh);
    }

    50% {
        -webkit-transform: translate(0, 75vh);

        transform: translate(0, 75vh);
    }

    75% {
        -webkit-transform: translate(0, 95vh);
        transform: translate(0, 95vh);
    }

    100% {
        -webkit-transform: translate(0, 120vh);
        transform: translate(0, 120vh);
    }
}

@keyframes dripAnimeTipScroll {
    0% {
        -webkit-transform: translate(0, 1vh);
        transform: translate(0, 1vh);
    }

    25% {
        -webkit-transform: translate(0, 25vh);
        transform: translate(0, 25vh);
    }

    50% {
        -webkit-transform: translate(0, 75vh);

        transform: translate(0, 75vh);
    }

    75% {
        -webkit-transform: translate(0, 95vh);
        transform: translate(0, 95vh);
    }

    100% {
        -webkit-transform: translate(0, 120vh);
        transform: translate(0, 120vh);
    }
}

@-webkit-keyframes linkEnter {
    0% {
        -webkit-transform: translateY(-450%);
        transform: translateY(-450%);
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes linkEnter {
    0% {
        -webkit-transform: translateY(-450%);
        transform: translateY(-450%);
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes pinDrop {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }

    50% {
        -webkit-transform: translateY(0) scaleY(0.9);
        transform: translateY(0) scaleY(0.9);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }

    60% {
        -webkit-transform: translateY(2%);
        transform: translateY(2%);
    }

    70% {
        -webkit-transform: translateY(0%) scaleY(0.9);
        transform: translateY(0%) scaleY(0.9);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }

    85% {
        -webkit-transform: translateY(2%);
        transform: translateY(2%);
    }

    100% {
        -webkit-transform: translateY(0) scaleY(0.9);
        transform: translateY(0) scaleY(0.9);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
        opacity: 1;
    }
}

@keyframes pinDrop {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }

    50% {
        -webkit-transform: translateY(0) scaleY(0.9);
        transform: translateY(0) scaleY(0.9);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }

    60% {
        -webkit-transform: translateY(2%);
        transform: translateY(2%);
    }

    70% {
        -webkit-transform: translateY(0%) scaleY(0.9);
        transform: translateY(0%) scaleY(0.9);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }

    85% {
        -webkit-transform: translateY(2%);
        transform: translateY(2%);
    }

    100% {
        -webkit-transform: translateY(0) scaleY(0.9);
        transform: translateY(0) scaleY(0.9);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
        opacity: 1;
    }
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        border-width: 4px;
    }

    50% {
        border-width: 7px;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        border-width: 4px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        border-width: 4px;
    }

    50% {
        border-width: 7px;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        border-width: 4px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@media only screen and (max-width: 640px) {
    .idle-wrap.desk-wrap .content-fill{
        max-height: 302px;
    }
}
@media only screen and (min-width: 540px) {
    h1 {
        margin: 0;
        padding: 1rem 0.5rem;
        font-size: 4.2rem;
    }

    .hero-welcome svg {
        margin-bottom: 35vh;
    }

    .resume {
        font-size: 1.6em;
    }

    .work-aside {
        padding: 3em 2vw 5em;
        width: 85vw;
    }

    .work h1 {
        padding: 0.5rem 0.5rem;
    }

    .notch {
        width: 2em;
        height: 2em;
    }

    .contact {
        height: auto;
    }

    .contact p {
        font-size: 1.6rem;
        margin: 0.6em auto;
        max-width: 95vw;
    }

    .social-wrap {
        margin: 0.8em auto;
        width: 90vw;
    }

    .social-wrap a {
        display: block;
    }

    .email-me {
        margin: 0.5em auto;
        font-size: 2.2em;
    }

    .scrolled .email-me-alt {
        position: fixed;
        bottom: 0;
        left: 1em;
    }

    .social-wrap a {
        padding: 0.9em;
        position: relative;
        background-color: transparent;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .social-wrap>a:after {
        content: " ";
        width: 110%;
        height: 150%;
        position: absolute;
        background-color: #cd3682;
        z-index: -1;
        bottom: -160%;
        transition: bottom 0.7s ease;
    }

    .social-wrap>.linked-in-link:after {
        background-color: #008db5;
    }

    .social-wrap>.fb-link:after {
        background-color: #efdb2f;
    }

    .social-wrap a:hover:after {
        bottom: -1em;
    }

    .social-wrap a:hover svg {
        opacity: 0.9;
    }

    .scrolled .back-top {
        right: 0.3em;
        bottom: 0.1em;
    }

    .scrolled .back-top:hover {
        background-color: rgba(247, 243, 239, 1);
        bottom: 1.8em;
        right: 1.5em;
    }
    /*//nested media query// */
    @media only screen and (min-height: 750px) {
        .contact p {
            font-size: 1.9rem;
        }

        .optional {
            display: block;
        }
    }
    .desk-wrap .idle-logo{
        padding: 30px 0;
    }
    .idle-wrap.mob-wrap .content-fill{
        min-height: 320px;
    }
}

@media only screen and (min-width: 700px) {
    .desk-wrap .idle-logo{
        padding: 50px 0;
        width: 40%;
        max-width: 180px;
    }
    .idle-wrap.mob-wrap .content-fill{
        min-height: 360px;
    }
    .idle-wrap.tablet-wrap .content-fill{
        animation: bgImageDesk 70s linear infinite;
    }
/*     .idle-wrap.img-wrap .content-fill {
        min-height: 350px;
    } */

/*     .idle-wrap.img-wrap.tablet-wrap .content-fill {
        min-height: 440px;
    }
 */
    .idle-header object {
        height: 25px;
        width: 25px;
    }

    .idle-header .idle-pin {
        height: 22px;
    }

    .idle-footer object {
        height: 25px;
        padding: 0 10px;
    }

    .idle-header nav {
        font-size: 1em;
    }

    .mob-wrap .idle-header object {
        max-height: 22px;
        max-width: 22px;
    }
    .cards a {
        display: block;
    }

    .contact p {
        font-size: 1.7em;
        margin: 0.8rem;
    }

    .email-me {
        padding: 1rem 1.5rem 1rem 8rem;
    }
}

@media only screen and (min-width: 1000px) {
    .hero-welcome svg {
        width: 25vw;
        height: 25vh;
    }

    .drip-wrap {
        width: 23em;
        left: 42%;
    }

    .work-aside {
        width: 90vw;
    }

    .work h3 {
        font-size: 3.4em;
        margin: 0;
    }

    .nav {
        font-size: 1.2em;
    }

    .resume {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 1em auto;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .resume-header {
        width: 90vw;
    }

    .resume aside {
        -webkit-box-shadow: 1px 1px 8px -1px #aaa;
        box-shadow: 1px 1px 8px -1px #aaa;
        margin-bottom: 1em;
    }

    .resume h1 {
        width: 100%;
    }

    .resume-column {
        max-width: 35em;
        width: 35%;
    }

    .experience {
        max-width: 55em;
        width: 55%;
    }

    .contact {
        padding: 0 5vw;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .contact h1 {
        font-size: 10vh;
    }

    .contact h2 {
        font-size: 8vh;
        text-align: left;
        margin-left: 5vw;
    }

    .contact p {
        font-size: 1.8rem;
    }

    .social-wrap {
        width: 35vw;
        margin: 1em auto 1em 3vw;
    }

    .social-wrap svg {
        height: 4em;
    }

    .ig-wrap {
        opacity: 0;
        z-index: -10;
        position: fixed;
        bottom: 6.6em;
        display: flex;
        left: -110%;
        width: 0;
        background-color: #fff;
        box-shadow: 0 0 10px -2px #000;
        transition: 0.7s linear left, 0.5s opacity ease-in-out;
    }

    .touch .ig-wrap {
        display: block;
    }

    .insta-link:hover+.ig-wrap,
    .ig-wrap:hover {
        left: 2.5vw;
        width: 95vw;
        opacity: 1;
        z-index: 50;
    }
}

@media only screen and (min-width: 1500px) {

    h1,
    .work h1 {
        padding: 1.2rem 3rem 1rem;
    }

    .resume {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .resume-header {
        max-width: 149rem;
    }

    .experience,
    .resume-column {
        margin: 1em;
    }

    .contact {
        padding: 0 12vw;
    }
}

@media only screen and (min-height: 900px) {
    .contact h2 {
        margin-bottom: 1.5rem;
    }

    .contact p {
        font-size: 2rem;
    }
}