/* Old Color Palette
#0266A8 - Main Blue
#FFE340 - Safety Yellow
#0A3B5C - Dark Blue
#FAFFFA - White
#3D3D3D - Graybones
*/

/* New Color Palette
#fed3d2 - Main Pink
#a1efea - Cyan
#aa8adf - Purple
#FAFFFA - White
#3D3D3D - Graybones
*/

/* Global styles
---------------------------*/
/*box model fix*/
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
@font-face {
    font-family: 'earthorbiter';
    src: url('earthorbiter-webfont.woff2') format('woff2'),
         url('earthorbiter-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}  
body {
    font-family: 'Lexend Exa', sans-serif;
/*    color: #FAFFFA;*/
    color: #3D3D3D;
/*    background: #0266A8;*/
    background: #FAFFFA;
    margin: 0;
}
::selection {
  background: #FED3D2; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #FED3D2; /* Gecko Browsers */
}
.masthead::selection {
  background: rgba(161, 239, 234, .7) !important; /* WebKit/Blink Browsers */
}
.masthead::-moz-selection {
  background: rgba(161, 239, 234, .7) !important; /* Gecko Browsers */
}
.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
img { 
  -webkit-user-drag: none; 
  -khtml-user-drag: none; 
  -moz-user-drag: none; 
  -o-user-drag: none; 
  user-drag: none; 
}
h1, h2 {
    font-family: 'earthorbiter', sans-serif;
    font-weight: 400;
    margin: 0;
}
h1 {
    font-size: 5em;
    line-height: .8em;
    text-transform: uppercase;
    margin: 0;
}
h2 {
    font-size: 1.81em;
    line-height: 1.1em;
}
h3 {
    font-size: 1.25em;
    margin: 0;
}
h4 {
    font-size: 1em;
    font-weight: 700;
    margin: 0;
    padding: 2px;
}
h4.skills {
    word-spacing: .5em;
}
.content {
    padding: 50px;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
}

.hiddenBreak {
    display: none;
}

.btn {
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    background: #a1efea;
    color: #3d3d3d;
    padding: 10px;
    display: inline-block;
}
.overline {
    border-top: 2px solid #FAFFFA;
    display: inline-block;
    padding-top: 10px;
}
.underline {
    border-bottom: 2px solid #FAFFFA;
    display: inline-block;
}
.boxed {
    border-top: 2px solid #FAFFFA;
    border-bottom: 2px solid #FAFFFA;
    border-left: 2px dashed #FAFFFA;
    border-right: 2px dashed #FAFFFA;
    display: inline-block;
    padding-top: 10px;
}
.workLine {
    border-color: #3D3D3D;
}
.partialBoxed {
    border-top: 2px dashed #FAFFFA;
    border-bottom: 2px dashed #FAFFFA;
    border-left: 2px dashed #FAFFFA;
    border-right: 2px dashed #FAFFFA;
    display: inline-block; 
    padding-top: 5px;
}
.divider {
    border-top: 2px solid #aa8adf;
    padding-bottom: 10px;
}
hr {
    border-top: 1px solid #3d3d3d;
}
.storyDivider {
    border-top: 2px solid #aa8adf;
    margin-top: 10px;
}
/* Header styles
---------------------------*/
@media  (min-width: 400px) {
    .resume {
        position: relative;
        background: linear-gradient(rgba(254, 211, 210, 0.5), rgba(255, 228, 227, 1)), url("../images/cyberpunk.png") no-repeat fixed;
        background-size: cover;
        background-position: left;
        height: auto
        opacity: 1;
        overflow: hidden;
        animation: bannerMove 180s infinite;
    }
    @keyframes bannerMove {
    from {background-position: left;}
    to {background-position: right;}
    }
    section.education {
    background: linear-gradient(rgba(227, 210, 255, .5), rgba(227, 210, 255, 1)), url("../images/cyberpunk.png") no-repeat fixed;
    background-size: cover;
    background-position: bottom left;
    color: #3d3d3d;
    animation: edMove 120s infinite;
    }
    @keyframes edMove {
    from {background-position: bottom left;}
    to {background-position: bottom right;}
    }
    footer {
    position: relative;
    background: linear-gradient(rgba(254, 211, 210, 0.5), rgba(255, 228, 227, 1)), url("../images/cyberpunk.png") no-repeat fixed;
    background-size: cover;
    background-position: top center;
    text-align: center;
    animation: footerMove 120s infinite;
    }
    @keyframes footerMove {
    from {background-position: top center;}
    to {background-position: bottom right;}
    }
    .sectionImage {
    width: 100px;
    margin-top: 4px;
    }
}
@media  (max-width: 399px) {
    .resume {
        position: relative;
        background: linear-gradient(rgba(254, 211, 210, 0.5), rgba(255, 228, 227, 1)) no-repeat fixed;
        background-size: cover;
        background-position: left;
        height: auto
        opacity: 1;
        overflow: hidden;
    }
    section.education {
    background: linear-gradient(rgba(227, 210, 255, .5), rgba(227, 210, 255, 1)) no-repeat fixed;
    background-size: cover;
    background-position: bottom left;
    color: #3d3d3d;
    }
    footer {
    position: relative;
    background: linear-gradient(rgba(254, 211, 210, 0.5), rgba(255, 228, 227, 1)) no-repeat fixed;
    background-size: cover;
    background-position: top center;
    text-align: center;
    }
    .sectionImage {
    display: none;
    }
}
header h1,h2 {  
    text-align: center;
    color: #3D3D3D;
}
header h2{
    margin-top: 1em;
}
header p{
    margin-bottom: 50px;
    color: #3D3D3D;
}
.photo {
    display: none;
    border: none;
}
.logo {
    display: inline;
}
.pdf {
    width: 100%;
    line-height: 2em;
    position: absolute;
    bottom: 0;
/*    right: 0;*/
}
.printContact {
    display: none;
}

/* Footer Styles
---------------------------*/
.contactIcons a{
    padding: 20px 10px;
    display: inline-block;
    font-size: 2.5em;
    color: #3d3d3d;
}
footer h2 {
    font-size: 3em;
    text-align: center;
    text-transform: uppercase;
}
#phoneNumber {
    display: none;
}
.phone {
    position: relative;
    background: #a1efea;
    color: #3d3d3d;
    margin-top: 5px;
    padding: 5px 20px;;
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation
---------------------------*/
nav {
    white-space: nowrap;
    text-align: center;
    background: #a1efea;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
nav a {
    display: inline-block;
    padding: 15px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    color: #3d3d3d;
    background: #a1efea;
    border-bottom: 4px solid #a1efea;
    transition: 0.3s;
}
nav a:hover {
    border-bottom: 4px solid #A585D7;
    transition: 0.3s;
}

nav a.current {
    border-bottom: 4px solid #A585D7;
    transition: 0.3s;
}
.topNav {
    display: none;
}

/* Section styles
---------------------------*/
.work {
    margin: 0;
    font-weight: 700;
    font-size: .75em;
    text-transform: uppercase;
    background: #a1efea;
    color: #3d3d3d;
    padding: 2px;
}

.client {
    margin-top: 20px;
}

.sectionHead {
    font-size: 3em;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #3D3D3D;
}
.accomplishments {
    margin-top: 10px;
}
.position {
    padding-top: 20px;
    padding-bottom: 5px;
}
.role {
    font-size: .75em;
}
span.education {
    border-color: #3d3d3d;
}
.skilllist {
    display: flex;
    flex-wrap: wrap;
}
.skillCheck {
    margin: .5em;
    padding: .5em;
    font-size: small;
    background: #fed3d2;
    color: #3d3d3d;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: transform .6s ease;
    transition: box-shadow .3s ease;
}
.skillCheck:hover {
    transition: transform .6s ease;
    transition: box-shadow .3s ease;
    transform: scale(1.5);
    box-shadow: 5px 5px rgba(170, 138, 223, .5);
}
.skillChecked {
    background: #a1efea;
}
#storyFilter {
    margin: auto 0;
}
.storyFilter {
    margin: .5em .5em .5em 0;
    padding: .25em;
    font-size: medium;
    background: #aa8adf;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    width: 48%;
}
.filterChecked {
    background: #a1efea;
    color: #3d3d3d;
}
.hiddenStory {
    display: none;
}
.tags {
    margin: auto 0;
}
.tags > p {
    margin: .5em .5em .5em 0;
    padding: .25em;
    font-size: x-small;
    background: #fed3d2;
    color: #3d3d3d;    
    display: inline-block;
}
.story {
    border-bottom: thin dotted #aa8adf;
    margin-bottom: 2em;
}
.story > h4 {
    font-size: .90em;
}
.story > h5 {
    font-size: .80em;
    font-weight: 800;
    padding: .25em;
    margin: 0;
    background: #a1efea;
}
.story > p {
    font-size: .75em;
    font-weight: 400;
    margin: .5em 0;
}
.star {
    font-weight: 800;
    color: #aa8adf;
    margin: 0;
}
/* FlowPaper styles 
---------------------------*/
.iframe-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
 
.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
/* Slideshow styles
---------------------------*/
.slideshow {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.slideshow img {
	position: absolute;
	left: 0;
	top: 0;	
	width: 100%;
}
/* Media queries
---------------------------*/
@media (max-width: 656px) {
    .hiddenBreak {
        display: inline;
    }
    .hideInMobile {
        display: none;
    }
}
/*MOBILE*/
@media (max-width: 899px){
    .content { 
    padding: 50px;
    }
    .phone {
    position: relative;
    background: #a1efea;
    color: #3d3d3d;
    margin-top: 5px;
    padding: 5px 20px;
    width: 100%;
    font-size: 1em;
    text-decoration: none;
    }
    .desktopBreak {
        display: none;
    }
    h1 {
        font-size: 3em;
    }
    footer h2 {
        font-size: 2.5em;
    }
    .sectionHead {
        font-size: 2.5em;
    }

    .dropbtn > * {
      pointer-events: none;
    }

    .dropbtn {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      margin: 0;
      background-color: #a1efea;
      color: #3d3d3d;
      padding: 16px;
      font-size: 16px;
      border: none;
      border-radius: 0 0 0 5px;
      cursor: pointer;
    }

    .dropbtn:hover, .dropbtn:focus {
      background-color: #a1efea;
    }

    .dropdown {
      position: fixed;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: fixed;
      right: 0;
      top: 50px;
      margin-top: 5px;
      margin-right: 0;    
      border-radius: 5px 0 0 5px;
      background-color: #a1efea;
      font-family: 'Lexend Exa', sans-serif;
      min-width: 160px;
      overflow: auto;
      z-index: 1;
    }

    .dropdown-content a {
      color: #3d3d3d;
      padding: 12px 16px;
      text-decoration: none;
      text-transform: uppercase;
      display: block;
    }

    .dropdown a:hover {
    background-color: #fafffa;
    }

    .show {
    display: block;
    }
    .sectionImage {
    width: 90px;
    margin-top: 0;
    }
}
/*DESKTOP*/
@media  (min-width: 900px) {
    .topNav {
        display: inline;
        z-index: 1;
    }
    header {
        padding-top: 50px;
    }
    .col-narrow {
        width: 30%;
        float: left;  
    }
    .col-wide {
        width: 70%;
        float: left;
        padding-left: 40px;
    }
    header h1,h2, h3, h4, p{
        text-align: left;
    }
    header p{
    margin-bottom: 0px;
}
    .photo {
        display: inline-block;
}
    .pdf {
        display: none;
        width: auto;
}
    .showMobile {
        display: none;
    }
    .dropdown {
        display: none;
    }
}
/*PRINT*/
@media print {
    body {
        margin: 0.5in;
        color: #000;
        font-size: 12pt;
    }
    .hiddenBreak {
        display: none;
    }
    .desktopBreak {
        display: none;
    }
    .col-narrow {
    }
    .col-wide {
    }
    header h1,h2, h3, h4, p{
        text-align: left;
        text-transform: none;
    }
    .pdf {
        display: none;
    }
    header, footer {
        padding-top: 0;
        background: #fff;
        color: #000;
}
    .education {
        color: #000;
}
    .posSmall {
        font-size: small;
    }
    .skillsHead{
        font-size: small;
    }
    .sectionHead {
        color: #000;
        font-family: 'Lexend Exa', sans-serif;
        text-transform: none;
        font-size: 2em;
        margin-top: 1em;
    }
    footer {
        display: none;
    }
    a {
        text-decoration: none;
        color: #000;
    }
    .content {
        padding: 0;
    }
    header h1, header h2 { 
        color: #000;
        font-family: 'Lexend Exa', sans-serif;
    }
    header {
        text-align: left;
    }
    .workExp{
        font-size: 2em;
        margin-top: 10px;
        margin-bottom: 20px;
}
    .overline {
        border: none;
}
    .underline {
        border: none;
}
    .boxed {
        border: none;
}
    .partialBoxed {
        border: none;
    }
    .divider {
        display: none;
    }
    .position {
        padding: 0;
        margin-top: 1em;
    }
    .lastAccomplishment {
/*        page-break-after: always;*/
    }
    .noPrint {
        display: none;
    }
    .printContact {
        display: inline;
        padding: 10px 0px;
    }
    .pcLeft {
        float: left;
        width: 50%;
        margin-bottom: 5px;
}
    .pcClear {
        clear: left;
        margin-bottom: 30px;
}
    .dropdown {
        display: none;
    }
    .hideInMobile {
        display: inline;
    }
        .sectionImage {
    display: none;
    }
}