/*

border-width: 1px;
border-style: solid;
border-color: red;

font-family: 'Yantramanav', sans-serif;
font-family: 'Roboto Slab', serif;

purple: #7b1ea4

*/

:root {
  --primary-purp-color: #7b1ea4;
  --primary-grey-color: #57585a;
  --secondary-grey-color: #A7A9AC;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  height: 100%;
  background-color: #fff;
}

h1 {
  color: var( --primary-grey-color );
  font-family: 'Roboto Slab', serif;
  font-size: 32px;
}

h2 {
  color: var( --secondary-grey-color );
  font-family: 'Yantramanav', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

a:link {
  color: var( --primary-grey-color );
  text-decoration: none;
}

a:visited {
  color: var( --primary-grey-color );
  text-decoration: none;
}

a:hover {
  color: var( --primary-purp-color );
  text-decoration: none;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.usePointer {
  cursor: pointer;
}

.hide {
  visibility: hidden;
}

/* header */

.header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}

.headContainer {
  max-width: 1050px; /* gives 75px spacing on sides */
  height: 170px;
  margin: auto;
}

.headBar {
  background-color: var( --primary-purp-color );
  width: 100%;
  height: 10px;
}

.headBarLow {
  height: 20px;
}

.headLogoContainer {
  width: 50%;
  height: 100%;
  float: left;
}

.headMenuContainer {
  width: 50%;
  height: 100%;
  float: right;
}

.headLockup {
  max-height: 105px;
  margin-top: 34px;
}

.headLockupSm {
  position: absolute;
  max-height: 51px;
  top: 24px;
}

.headMenuItem {
  position: relative;
  padding: 20px;
  font-family: 'Yantramanav', sans-serif;
  font-size: 16px;
  color: var( --primary-grey-color );
  float: left;
  top: 96px;
}

.headMenuResume {
  left: 300px;
}

.headMenuContact {
  left: 300px;
}

.purpleHeaderBG {
  width: 100%;
  height: 200px;
  background-color: var( --primary-purp-color );
}

/* resume */

.resume {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1005;
}

.resumePage {
  position: relative;
  width: 1050px;
  height: 0;
  background-color: #fff;
  margin: auto;
  outline-style: solid;
  outline-width: 4px;
  outline-color: var( --primary-purp-color );
  overflow: hidden;
  box-shadow: 4px 0px 8px rgba(0, 0, 0, .3);
}

.resumeHeader {
  width: 100%;
  height: 160px;
}

.resumeDownload {
  position: absolute;
  background-color: var( --secondary-grey-color );
  width: 40px;
  height: 40px;
  left: 930px;
  top: 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, .3);
}

.resumeClose {
  position: absolute;
  background-color: var( --secondary-grey-color );
  width: 40px;
  height: 40px;
  left: 990px;
  top: 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, .3);
}

.resumeArrow {
  position: relative;

  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;

  border-bottom: 8px solid #fff;
  margin: auto;
  top: 16px;
}

.resumeIconDl {
  width: 40px;
}

.resumeLockup {
  position: absolute;
  max-height: 70px;
  left: 40px;
  top: 40px;
}

.resumeLabels {
  position: absolute;
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  color: var( --secondary-grey-color );
  line-height: 24px;
  text-align: right;
  top: 60px;
  left: 780px;
  float: left;
}

.resumeContact {
  position: absolute;
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  color: var( --primary-grey-color );
  line-height: 24px;
  top: 60px;
  left: 860px;
  float: left;
}

.resumeRuleContainer {
  position: relative;
  width: 970px;
  height: 40px;
  left: 40px;
}

.resumeBody {
  position: relative;
  width: 970px;
  height: 100px;
  left: 40px;
  overflow-y: scroll;
}

.resumeHr {
  border-bottom: 1px solid var( --secondary-grey-color );
  width: 100%;
  height: 40px;
}

.resumeStatement {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 300;
  color: var( --primary-grey-color );
  line-height: 32px;
  text-align: center;
  margin: 50px 0;
  margin-bottom: 100px;
}

.resumeStatementBold {
  font-weight: 700;
}

.resumeLeftBracket {
  position: absolute;
  left: 100px;
  top: 40px;
}

.resumeRightBracket {
  position: absolute;
  left: 850px;
  top: 40px;
}

.resumeBracket {
  stroke: var( --secondary-grey-color );
  stroke-width: 2;
  fill-opacity: 0;
}

.resumeSpacer {
  position: relative;
  width: 100%;
  height: 40px;
}

.resumeTitle {
  font-family: 'Roboto Slab', serif;
  font-size: 32px;
  font-weight: 700;
  color: var( --secondary-grey-color );
  margin: 0 auto 60px auto;
  width: 750px;
}

.resumeHeadingContainer {
  position: relative;
  width: 600px;
  left: 20px;
  overflow: auto;
}

.resumeHeadingContainerAdj {
  left: 100px;
}

.resumeHeadingTitle {
  width: 50%;
  float: left;
  font-family: 'Yantramanav', sans-serif;
  font-size: 18px;
  color: var( --primary-grey-color );
  font-weight: 700;
}

.resumeHeadingTime {
  width: 50%;
  float: left;
  font-family: 'Yantramanav', sans-serif;
  font-size: 18px;
  color: var( --primary-grey-color );
  text-align: right;
}

.resumeTitleSmall {
  font-weight: 400;
}

.resumeContent {
  position: relative;
  overflow: auto;
  font-family: 'Yantramanav', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var( --primary-grey-color );
  float: left;
  margin: 40px 0;
}

.resumeBracketGrayDuck {
  position: relative;
  top: 10px;
  left: 60px;
  float: left;
}

.resumeIconGrayDuck {
  position: relative;
  left: -26px;
  top: 80px;
  float: left;
}

.resumeBracketCompany {
  font: 18px 'Yantramanav';
  fill: #57585a;
}

.resumeSkillsetContainer {
  width: 750px;
  overflow: auto;
  margin: auto;
  margin-bottom: 50px;
}

.resumeSkillsetItem {
  width: 288px;
  height: 60px;
  float: left;
  margin-top: 20px;
  margin-left: 20px;
  /* background-color: #F1F2F2; */
}

.resumeSkillsetGutter {
  width: 50px;
  height: 60px;
  float: left;
  margin-top: 20px;
}

.resumeIcon {
  position: relative;
  width: 40px;
  top: -120px;
  left: -20px;
  float: left;
}

.resumeSkillBar {
  position: relative;
  height: 30px;
  top: 15px;
  left: 0px;
}

.resumeSkillBar_js {
  width: calc(270px * .7);
  background-color: #f58233;
}

.resumeSkillBar_html {
  width: calc(270px * .85);
  background-color: #f15931;
}

.resumeSkillBar_mysql {
  width: calc(270px * .6);
  background-color: #144e61;
}

.resumeSkillBar_arduino {
  width: calc(270px * .89);
  background-color: #f37328;
}

.resumeSkillBar_electron {
  width: calc(270px * .8);
  background-color: #a9ecf8;
}

.resumeSkillBar_rn {
  width: calc(270px * .7);
  background-color: #60dafb;
}

.resumeSkillBar_aws {
  width: calc(270px * .4);
  background-color: #f7981f;
}

.resumeSkillBar_Ps {
  width: calc(270px * .97);
  background-color: #81bbfb;
}

.resumeSkillBar_Ai {
  width: calc(270px * .95);
  background-color: #ff7c00;
}

.resumeSkillBar_Ae {
  width: calc(270px * .7);
  background-color: #d291ff;
}

.resumeSkillBar_sketch {
  width: calc(270px * .4);
  background-color: #ffae00;
}

.resumeSkillBar_sketchup {
  width: calc(270px * .3);
  background-color: #e82c2e;
}

.resumeSkillBar_google {
  width: calc(270px * .7);
  background-color: #2186fa;
}

.resumeSkillBar_keynote {
  width: calc(270px * .9);
  background-color: #50c9fd;
}

.resumeSkillBarGrad {
  position: relative;
  height: 30px;
  width: 270px;
  top: -15px;
  left: 0px;
  background: linear-gradient(to right, rgba(242,242,242,.6) 0%,rgba(255,255,255,0) 100%);
   box-shadow: inset -1px -1px 1px rgba( 0, 0, 0, .1 );
  background-color: rgba( 0,0,0, .08);
  outline-width: 1px;
  outline-color: #e2e2e2;
  outline-style: solid;
}

.resumeSkillBarLabel {
  position: relative;
  height: 60px;
  left: 0;
  top: -60px;
  padding-left: 30px;
  font-family: 'Yantramanav', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  color: #F1F2F2;
  text-shadow: 1px 1px 8px rgba( 0, 0, 0, .5 );
  overflow: auto;
}

.resumeSkillBarTemp {
  width: 80px;
}

.resumeSkillsetTitles {
  width: 125px;
  float: left;
  font-family: 'Yantramanav', sans-serif;
  font-size: 16px;
  line-height: 36px;
}

.resumeSkillsetTitlesLeft {
  text-align: right;
  margin-right: 5px;
}

.resumeSkillsetTitlesRight {
  text-align: left;
  margin-left: 5px
}

.resumeSkillsetGraphs {
  width: 235px;
  float: left;
  overflow: auto;
  margin: 0 5px;
}

.resume2Column {
  width: 750px;
  margin: auto;
  margin-top: 80px;
  overflow: auto;
}

.resume2ColTitle {
  font-family: 'Roboto Slab', serif;
  font-size: 32px;
  font-weight: 700;
  color: var( --secondary-grey-color );
  width: 350px;
  float: left;
}

.resume2ColGutter {
  margin-right: 50px;
}

.resumeEducationCell {
  position: relative;
  border-top: 1px solid var( --secondary-grey-color );
  border-bottom: 1px solid var( --secondary-grey-color );
  height: 300px;
  width: 350px;
  background-color: #F1F2F2;
  text-align: center;
  float: left;
}

.resumeSCAD {
  width: 200px;
  margin: 20px auto;
}

.resumeEducationData {
  border-top: 1px solid var( --secondary-grey-color );
  width: 240px;
  margin: auto;
  text-align: center;
  font-family: 'Yantramanav', sans-serif;
  font-size: 16px;
  line-height: 21px;
  padding: 12px;
}

.resumeEducationBold {
  font-weight: 700;
}

.resumeEducationLight {
  color: #403F41;
}

.resumeInterestData {
  width: 300px;
  margin: auto;
  text-align: center;
  font-family: 'Yantramanav', sans-serif;
  font-size: 16px;
  line-height: 32px;
  padding: 20px 0;
  column-count: 2;
  column-gap: 20px;
  text-align: left;
}

.resumeImgDodgeball {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 200px;
}

.resumePortfolio {
  position: relative;
  width: 500px;
  height: 80px;
  margin: auto;
  text-align: center;
  font-family: 'Roboto Slab', serif;
  font-size: 42px;
  line-height: 80px;
  margin-top: 60px;
  /* border: 1px solid var( --primary-grey-color ); */
  color: var( --primary-grey-color );
  cursor: pointer;
}

/* contact */

.contact {
  position: fixed;
  width: 100%;
  z-index: 1006;
  top: -500px;
}

.contactContainer {
  width: 1050px;
  margin: auto;
}

.contactWindow {
  position: relative;
  width: 445px;
  height: 400px;
  left: 730px;
  background-color: #fff;
  outline-width: 3px;
  outline-style: solid;
  outline-color: var( --primary-purp-color );
}

.contactContent {
  padding: 1px 40px;
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  font-weight: 300;
  color: var( --primary-grey-color );
  line-height: 32px;
}

.contactIcon {
  position: absolute;
  width: 40px;
  left: 50px;
}

.contactDesc {
  position: absolute;
  left: 30px;
  color: var( --primary-purp-color );
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 80px;
  width: 200px;
}

.contactDescSm {
  font-size: 14px;
  font-weight: 300;
}

.contactIconLoc {
  top: 200px;
}

.contactDescLoc {
  top: 194px;
}

.contactIconPhone {
  top: 260px;
}

.contactDescPhone {
  top: 254px;
}

.contactIconEmail {
  top: 320px;
}

.contactDescEmail {
  top: 314px;
}

.contactIconCC {
  position: absolute;
  width: 40px;
  left: 355px;
}

.contactIconCCPhone {
  top: 260px;
}

.contactIconCCEmail {
  top: 320px;
}

.contactMin {
  position: relative;
  width: 60px;
  height: 35px;
  background-color: var( --primary-purp-color );
  left: 1060px;
}

.contactArrow {
  position: relative;

  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;

  border-bottom: 8px solid #fff;
  margin: auto;
  top: 13px;
}

.contactCCHint {
  position: absolute;
  padding: 4px;
  font-family: 'Yantramanav', sans-serif;
  font-size: 10px;
  color: var( --primary-grey-color );
  background-color: #fff;
  outline-style: solid;
  outline-color: var( --primary-grey-color );
  outline-width: 1px;
  width: 100px;
  text-align: center;
}

.contactPhoneCCHint {
  right: 90px;
  top: 260px;
  opacity: 0;
}

.contactEmailCCHint {
  right: 90px;
  top: 320px;
  opacity: 0;
}

.contactCCArrow {
  position: absolute;
  top: 16px;
  right: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var( --primary-grey-color );;
}

/* Gray Duck Callout */

.grayduckContainer {
  position: fixed;
  right: -1px;
  top: 250px;
  z-index: 1001;
  cursor: pointer;
  visibility: hidden;
}

.grayduckBG {
  width: 126px;
  height: 320px;
  background-color: #939393;
  border-width: 1px;
  border-color: #c9c9c9;
  border-style: solid;
  box-shadow: -2px 0px 10px rgba(0,0,0,.4);
}

.grayduckEmil {
  position: relative;
  max-width: 91px;
  left: 14px;
  top: 25px;
}

.grayduckTag {
  position: absolute;
  width: 0; /* 18 when open */
  height: 30px;
  top: 10px;
  background-color: #d2d2d2;
  overflow: hidden;
}

.arrow-left {
  position: relative;
  left: 5px;
  top: 9px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;

  border-right:6px solid var( --primary-grey-color );;
}

.grayduckCallout {
  position: absolute;
  left: -14px;
  top: 158px;
  width: 140px;
  height: 105px;
  background-color: #fff;
  box-shadow: -1px 0px 20px rgba(0,0,0,.4);
  color: var( --primary-grey-color );
  font-size: 14px;
  font-family: 'Yantramanav', sans-serif;
  text-align: center;
}

.grayduckText {
  margin-top: 26px;
}

.grayduckVisit {
  position: absolute;
  top: 262px;
  width: 124px;
  padding: 17px 0;
  color: #fff;
  font-size: 18px;
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  text-align: center;
}

/* statement */

.statement {
  width: 100%;
  background-color: var( --primary-purp-color );
  background-image: linear-gradient(#481261, var( --primary-purp-color ));
}

.statementOverlay {
  position: absolute;
  width: 100%;
  height: 460px;
  left: 0;
  top: 200px;
  background-color: #000;
  opacity: 0;
}

.statementSpotLight {
  position: absolute;
  width: 100%;
  height: 440px;
  background-image:
    radial-gradient(
      circle at 40px 100px,
      rgba(138, 57, 172, 1.0),
      rgba(138, 57, 172, 0.0)
    );

}

.statementImgLeft {
  position: absolute;
  height: 440px;
  opacity: 0.6;
}

.statementImgRight {
  position: absolute;
  right: 0px;
  height: 440px;
  opacity: 0.6;
}

.statementContainer {
  max-width: 1050px; /* gives 75px spacing on sides */
  height: 440px;
  margin: auto;
}

.statementText {
  position: relative;
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  width: 820px;
  line-height: 46px;
  margin: auto;
  top: 70px;
}

.statementTextHeadline {
  font-weight: 700;
}

/* portfolio scroller */

.scroller {
  position: relative;
  width: 100%;
  height: 180px;
}

.scrollerContainer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  color: var( --primary-grey-color );
  text-align: center;
  cursor: pointer;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;

  border-top: 8px solid var( --primary-purp-color );
  margin: 6px auto;
}

/* schrack facts */

.schrackFact {
  position: relative;
  width: 100%
}

.schrackFactContainer {
  max-width: 1050px; /* gives 75px spacing on sides */
  margin: auto;
}

.schrackFactBG {
  max-width: 1050px; /* gives 75px spacing on sides */
  margin: auto;
  background-color: #d1d1d1;
}

.schrackFactText {
  font-family: 'Yantramanav', sans-serif;
  font-size: 24px;
  line-height: 40px;
  color: var( --primary-grey-color );
  width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.schrackFactCredit {
  font-family: 'Yantramanav', sans-serif;
  font-size: 18px;
  color: var( --primary-grey-color );
  width: 800px;
  margin: 0 auto;
  padding-bottom: 40px;
  text-align: right;
}

.schrackFactTopApo {
  max-width: 1050px; /* gives 75px spacing on sides */
  margin: auto;
  font-family: 'Roboto Slab', serif;
  font-size: 120px;
  font-weight: 500;
  color: var( --primary-purp-color );
  margin: -30px 40px -110px;
}

.schrackFactBtmApo {
  max-width: 1050px; /* gives 75px spacing on sides */
  margin: auto;
  font-family: 'Roboto Slab', serif;
  font-size: 120px;
  font-weight: 500;
  color: var( --primary-purp-color );
  margin: -50px 40px 0;
  text-align: right;
}

/* the real portfolio */

.portfolio {
  position: relative;
  width: 100%
}

.portfolioContainer {
  max-width: 1060px; /* gives 75px spacing on sides */
  margin: auto;
  overflow: auto;
}

.portfolioItem {
  width: 255px;
  height: 255px;
  background-color: #fff;
  float: left;
  margin: 0 5px 10px 5px;
}

.portfolioHitarea {
  position: absolute;
  width: 255px;
  height: 255px;
}

.potfolioImg {
  position: absolute;
  width: 255px;
  height: 255px;
  opacity: .2;
}

.potfolioLogo {
  position: absolute;
  width: 255px;
  height: 255px;
}

/* gallery */

.gallery {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  overflow: hidden;
  background-color: #000;
}

.galleryClose {
  position: fixed;
  top: 0;
  right: 40px;
  width: 40px;
  height: 50px;
  background-color: rgba( 0,0,0, .8 );
  text-align: center;
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  line-height: 60px;
  box-shadow: 0px 2px 10px rgba( 255, 255, 255, .4 );
  color: var( --secondary-grey-color );
  cursor: pointer;
}

.galleryImg {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  margin: auto;
}

.galleryVideo {
  position: fixed;
  width: 100%;
  max-height: 100%;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.galleryWin {
  position: fixed;
  left: 40px;
  bottom: 0px;
  max-width: 500px;
  min-width: 300px;
  background-color: rgba( 0, 0, 0, .8 );
  padding: 20px;
  padding-bottom: 50px;
}

.galleryWinCtrl {
  position: relative;
  right: 0;
  top: 0;
  padding: 12px;
  float: right;
  cursor: pointer;
  margin-top: 10px;
}

.galleryWinMax {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;

  border-bottom: 5px solid #fff;
}

.galleryWinMin {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;

  border-top: 5px solid #fff;
}

.galleryDesc {
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 21px;
  /* display: none; */
}

.galleryNav {
  position: relative;
  overflow: auto;
  width: 100%;
  text-align: right;
  margin-top: 40px;
  color: #fff;
  user-select: none;
}

.galleryCredit {
  position: relative;
  font-family: 'Yantramanav', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  float: left;
  margin: 12px 0;
}

.galleryArrow {
  float: right;
  color: #fff;
  cursor: pointer;
}

.galleryArrowSty {
  stroke: var( --secondary-grey-color );
  stroke-width: 2;
  fill-opacity: 0;
}

.galleryImgNum {
  float: right;
  position: relative;
  font-family: 'Yantramanav', sans-serif;
  font-weight: 400;
  font-size: 14px;
  height: 20px;
  width: 80px;
  line-height: 20px;;
  text-align: center;
  overflow: auto;
}

.galleryImgNumActive {
  font-weight: 700;
  font-size: 18px;
}


/* footer */

.footer {
  position: relative;
  width: 100%;
}

.footerContainer {
  max-width: 1050px; /* gives 75px spacing on sides */
  margin: auto;
}

.footerSpacer {
  height: 200px;
  width: 100%;
}

.footerContent {
  position: relative;
  height: 300px;
  width: 100%;
  background-color: #d1d1d1;
}

.footerLockup {
  position: absolute;
  width: 250px;
  bottom: 88px;
  left: 220px;
}

.footerTimeContainer {
  position: relative;
  padding-top: 40px;
  padding-left: 170px;
}

.footerTime {
  float: left;
  font-family: 'Roboto Slab', serif;
  font-size: 32px;
  font-weight: 400;
  color: var( --primary-gray-color );
  margin: 0 50px;
}

.timeCurrent {
  color: var( --primary-purp-color );
}

.footerLabels {
  float: left;
  font-size: 14px;
  font-weight: 300;
  color: var( --primary-gray-color );
}

.footerContactContainer {
  position: relative;
  left: 740px;
  top: 60px;
  text-align: left;
  overflow: auto;
  width: 300px;
}

.footerContact {
  height: 50px;
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 500;
  color: var( --primary-purp-color );
}

.footerCopyright {
  height: 30px;
  font-family: 'Yantramanav', sans-serif;
  font-size: 10px;
  color: var( --primary-grey-color );
  margin: auto;
  text-align: center;
  padding: 10px;
}
