@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700);
:root {
  --tip-color: rgba(0,0,0,0.8);
  --left-arrow: 0;
  --right-arrow: 0; 
  --scale: 3;
  --bg-green: #95a87e;
}

@media (width <= 850px) {
  :root {
    --scale: 4;
  }
}

/* Fonts */
/* Partials */
/* Mixins partial */ /* Variables partial */
/* Global Variables */
/* Responsive Animation Variables */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 155, 255, 0.75) 0%, rgba(0, 255, 155, 0.85) 15%, rgba(0, 155, 255, 0.75) 55%, rgba(0, 255, 155, 0.85) 70%, rgba(0, 155, 255, 0.75) 100%), url(../assets/phx.jpg);
  background-size: cover;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: inherit;
}

a img {
  border: 0;
  outline: 0;
}

section {
  width: 100%;
}

::selection {
  background-color: #ffc12b;
}

.overflow-wrap {
  overflow-x: hidden;
  height: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
}

.invisible {
  opacity: 0;
}
.invisible:hover {
  opacity: 1;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 80px;
  z-index: 12;
  border-left: 5px solid transparent;
  -webkit-border-image: -webkit-linear-gradient(#ffc12b 0%, #ff9b00 55%, transparent 100%) 0 0 0 5;
  -moz-border-image: -moz-linear-gradient(#ffc12b 0%, #ff9b00 55%, transparent 100%) 0 0 0 5;
  -o-border-image: -o-linear-gradient(#ffc12b 0%, #ff9b00 55%, transparent 100%) 0 0 0 5;
  border-image: linear-gradient(#ffc12b 0%, #ff9b00 55%, transparent 100%) 0 0 0 5;
  border-image-slice: 1;
  -webkit-transition: width 500ms, opacity 500ms;
  transition: width 500ms, opacity 500ms;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
}
nav ul {
  list-style: none;
  margin: 10px 5px 0 0;
  text-align: right;
  color: #fff;
  width: 250px;
  display: none;
}
@media screen and (max-width: 639px) {
  nav ul.shrunk {
    margin-top: 25px;
  }
  nav ul.shrunk li {
    transition: all 500ms;
    font-size: 24px;
    margin: 6px;
  }
}
nav ul li {
  font-size: 28px;
  text-transform: lowercase;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 12px 30px;
  transition: all 500ms;
}
nav ul li a:hover {
  display: inline-block;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.65);
}
nav .navBottom {
  position: fixed;
  bottom: 40px;
  width: 250px;
  display: none !important;
}
@media screen and (max-height: 639px) {
  nav .navBottom {
    display: none;
  }
}
nav .navBottom p {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 21px;
}
nav.open .navBottom {
  display: block !important;
}
nav .sunSpot {
  display: flex;
  flex-direction: column;
}
nav .sun {
  background-color: #ffc109;
  border-radius: 50%;
  height: 72px;
  width: 72px;
  margin: 10px auto;
  border: 5px solid #ffce3c;
}

nav .currTemp {
  text-align: center;
  line-height: 62px;
  font-size: 28px;
  margin-left: 4px;
  display: block;
  color: #fff;
  font-family: "Source Sans Pro", serif;
  text-shadow: 0 0 7px #d59f00;
}

nav #tidbyt {
  background-color: var(--bg-green);
  width: calc(64px * var(--scale));
  height: calc(32px * var(--scale));
  display: flex;
  margin: 40px auto 0;
  position: relative;
}

@media (height < 500px) {
  nav #tidbyt {
    display: none;
  }
}

nav #frame {
  display: flex;
  align-items: center;
  justify-content: center;
  image-rendering: pixelated;
  position: absolute;
  top: 0;
  left: 0;
}

nav .pikachu-link {
  display: block;
  margin: 10px auto;
  text-align: center;
  color: #223d45;
  font-size: 21px;
}

@media (height < 500px) {
  nav .pikachu-link {
    display: none;
  }
}

nav.open {
  width: 250px;
  background: linear-gradient(45deg, rgba(0, 155, 255, 0.75) 0%, rgba(0, 255, 155, 0.85) 55%, rgba(0, 155, 255, 0.75) 100%);
  border-bottom: 3px solid #fff;
}
nav.open .menu-button:hover .top {
  -webkit-transition: transform 500ms;
  transition: transform 500ms;
  -webkit-transform: rotate(90deg) translate(7px, 0);
  -moz-transform: rotate(90deg) translate(7px, 0);
  -ms-transform: rotate(90deg) translate(7px, 0);
  transform: rotate(90deg) translate(7px, 0);
  outline: 1px solid transparent;
}

.menu-button {
  border-radius: 50%;
  background-color: #ffc12b;
  width: 40px;
  height: 40px;
  position: absolute;
  padding: 9px 7px;
  top: 50px;
  margin-left: -23px;
  cursor: pointer;
  -webkit-transition: background-color, 500ms;
  transition: background-color, 500ms;
}
.menu-button .menu {
  margin-top: 3px;
  margin-left: 1px;
}
.menu-button span {
  width: 24px;
  height: 3px;
  margin-bottom: 4px;
  background-color: #fff;
  display: block;
  border-radius: 5px;
}
.menu-button:hover {
  -webkit-transition: background-color, 500ms;
  transition: background-color, 500ms;
  background-color: #ff9b00;
}
.menu-button .top {
  -webkit-transition: transform 500ms;
  transition: transform 500ms;
  -webkit-transform: rotate(0deg) translate(0, 0);
  -moz-transform: rotate(0deg) translate(0, 0);
  -ms-transform: rotate(0deg) translate(0, 0);
  transform: rotate(0deg) translate(0, 0);
  outline: 1px solid transparent;
}
.menu-button:hover .top {
  -webkit-transition: transform 500ms;
  transition: transform 500ms;
  -webkit-transform: rotate(90deg) translate(6px, 0);
  -moz-transform: rotate(90deg) translate(6px, 0);
  -ms-transform: rotate(90deg) translate(6px, 0);
  transform: rotate(90deg) translate(6px, 0);
  outline: 1px solid transparent;
}
.menu-button .mid {
  -webkit-transition: transform 500ms;
  transition: transform 500ms;
}
.menu-button:hover .mid {
  -webkit-transition: transform 500ms;
  transition: transform 500ms;
}
.menu-button .bot {
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  opacity: 1;
}
.menu-button:hover .bot {
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  opacity: 0;
}
.menu-button .menu.close-icon {
  -webkit-transition: transform 500ms;
  transition: transform 500ms;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  outline: 1px solid transparent;
}
.menu-button:hover .menu.close-icon {
  -webkit-transition: transform 500ms;
  transition: transform 500ms;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  outline: 1px solid transparent;
}

h2, h3 {
  text-transform: lowercase;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.5em;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 400;
  text-align: center;
  padding-top: 38px;
  margin: 0 auto;
  max-width: 75%;
  line-height: 1.2em;
  color: #00a3d9;
  background: -webkit-linear-gradient(rgba(0, 155, 255, 0.75) 0%, rgba(0, 255, 155, 0.85) 40%, rgba(0, 155, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2.four04, h3.four04 {
  background: -webkit-linear-gradient(rgba(0, 155, 255, 0.75) 0%, rgba(0, 255, 155, 0.85) 40%, rgba(0, 155, 255, 0.75) 100%), url(http://i.imgur.com/y2RrozH.jpg) center center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20em;
  font-weight: 700;
}

h3 {
  font-size: 2.2em;
  text-transform: initial;
}

/* Intro section */
#intro {
  height: 108vh;
}

/* Header section */
header {
  position: relative;
  top: calc(50% - 150px);
}

.kstardesigns-logo {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
  outline: 1px solid transparent;
  -webkit-transform-origin: 50% 51%;
  display: block;
}

header h1 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  -webkit-transform: rotate(-12deg);
  -moz-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
  outline: 1px solid transparent;
  -webkit-transform-origin: 50% 51%;
  margin-top: -10px;
  margin-left: -140px;
  font-size: 1.3em;
  color: #fff;
  letter-spacing: 1.5px;
  text-align: center;
}

.down {
  position: absolute;
  bottom: 30px;
  left: calc(50% - 12px);
  display: block;
  margin: 0 auto;
}

.bounce {
  -moz-animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}

/* Intro section */
/* Striped sections */
.stripe {
  height: 240px;
  margin: -20px 0 10px -10%;
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  background-color: #fff;
  width: 120%;
}
@media screen and (max-width: 900px) {
  .stripe.skills {
    height: auto;
    padding-bottom: 30px;
  }
}

.stripe-inside {
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.stripe.experience {
  margin: 30px 0 10px -10%;
}

.skills .svgs {
  display: flex;
  margin: 25px auto;
  justify-content: center;
  align-items: center;
  width: 850px;
  max-width: 100%;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .skills .svgs {
    width: 80%;
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
.skills figure {
  position: relative;
}
.skills img {
  width: 70px;
}
.skills .html5 img {
  width: 80px;
}
.skills .css3 img {
  width: 57px;
}
.skills .javascript img {
  width: 66px;
}

.experience {
  height: 980px;
}
.experience .svgs {
  width: 900px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 35px auto;
}
.experience .svgs--companies figure {
  width: 25%;
  display: flex;
}
.experience .svgs--companies figure img {
  display: block;
  width: 120px;
  height: auto;
  align-self: center;
}
.experience .svgs--companies figure.millerlite img, .experience .svgs--companies figure.elmers img {
  width: 100px;
}
.experience .svgs--companies figure.mcdonalds img {
  width: 90px;
}
.experience .svgs--companies figure.pepsico img {
  width: 150px;
  margin-top: -10px;
}
.experience .svgs--companies figure.americanexpress img {
  width: 75px;
}
.experience figure {
  width: 50%;
  position: relative;
  height: 150px;
  margin: 10px auto;
}
.experience figure img {
  display: block;
  margin: 0 auto 15px;
  height: 60px;
}
.experience figure.bannerhealth img {
  margin: 12px auto 18px;
  height: 45px;
}
.experience figure.prizelogic img {
  margin: 14px auto 27px;
  height: 35px;
}
.experience figure figcaption {
  text-align: center;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: 1px;
  line-height: 1.4em;
  width: 100%;
}

/* Portfolio section */
#portfolio {
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  background-color: #fff;
  width: 120%;
  margin: 30px 0 10px -10%;
}
#portfolio .portfolio-inside {
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  max-width: 1100px;
  display: block;
  margin: 30px auto;
}
#portfolio .portfolio-top {
  font-family: "Josefin Sans", sans-serif;
  display: block;
  margin: 40px auto 15px auto;
  width: 500px;
  text-align: center;
}
#portfolio .portfolio-block {
  display: block;
  margin: 10px auto;
  width: 450px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
#portfolio .portfolio-block img {
  background: #ffc12b;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
}
#portfolio .portfolio-block img:hover {
  background: #f7af00;
}
#portfolio .portfolio-block img.left {
  padding: 4px 3px 4px 0;
}
#portfolio .portfolio-block img.right {
  padding: 4px 0 4px 3px;
}
#portfolio .portfolio-block .item-name {
  font-size: 32px;
  line-height: 32px;
  margin: 0 20px;
  width: 350px;
}
#portfolio .portfolio-block .item-description {
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 24px;
  font-weight: 400;
  color: #333;
}
#portfolio .portfolio-block .item-description a {
  color: #00a3d9;
  white-space: nowrap;
  display: inline-block;
}
#portfolio .portfolio-block .item-description a:hover {
  color: #00488a;
}
#portfolio .portfolio-block .item-description a span {
  font-size: 14px;
}

/* Featured section */
#featured {
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  background-color: #fff;
  width: 120%;
  margin: 30px 0 10px -10%;
}
#featured .featured-inside {
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  max-width: 1100px;
  display: block;
  margin: 30px auto;
}
#featured .featured-top {
  font-family: "Josefin Sans", sans-serif;
  display: block;
  margin: 40px auto 15px auto;
  width: 100%;
  text-align: center;
}
#featured .featured-block {
  display: block;
  margin: 10px auto;
  width: 450px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#featured .featured-block--two {
  width: 920px;
  max-width: 100%;
  margin-top: 20px;
}
#featured .featured-block--two p em {
  display: block;
  margin-top: 15px;
}
#featured .featured-block img {
  background: #00a3d9;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
}
#featured .featured-block img:hover {
  background: #007da6;
}
#featured .featured-block img.featured-left {
  padding: 4px 3px 4px 0;
}
#featured .featured-block img.featured-right {
  padding: 4px 0 4px 3px;
}
#featured .featured-block .featured-item-name {
  font-size: 32px;
  line-height: 32px;
  margin: 0 20px;
  width: 350px;
}
#featured .featured-block .featured-item-description {
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 24px;
  font-weight: 400;
  padding: 0 10px;
  color: #333;
}
#featured .featured-block .featured-item-description a {
  color: #00a3d9;
  white-space: nowrap;
  display: inline-block;
}
#featured .featured-block .featured-item-description a:hover {
  color: #00488a;
}
#featured .featured-block .featured-item-description a span {
  font-size: 14px;
}
#featured #featured-project {
  padding-bottom: 30px;
}
#featured #featured-project img {
  width: 800px;
  max-width: 75%;
  border: 2px solid #00a3d9;
  display: block;
  margin: 30px auto;
}
#featured #featured-project img:hover {
  border: 2px solid #00488a;
}
#featured #featured-project .imglink {
  display: block;
  width: auto;
  height: auto;
}
#featured #featured-project .featured-item-links {
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 24px;
  font-weight: 400;
  color: #333;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
#featured #featured-project .featured-item-links a {
  color: #00a3d9;
  white-space: nowrap;
  display: inline-block;
}
#featured #featured-project .featured-item-links a:hover {
  color: #00488a;
}
#featured #featured-project .featured-item-links a span {
  font-size: 14px;
}

/* About section */
#about {
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  background-color: #fff;
  width: 120%;
  margin: 30px 0 10px -10%;
  padding-bottom: 10px;
}
#about .about-inside {
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  max-width: 1100px;
  display: block;
  margin: 30px auto;
}
#about p {
  text-align: center;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2em;
  margin-top: 20px;
  line-height: 1.5em;
  width: 60%;
  display: block;
  margin: 20px auto;
  font-weight: 400;
}
#about a {
  color: #00a3d9;
}
#about a:hover {
  color: #00488a;
}
#about .kyle {
  display: block;
  margin: 0 auto;
  width: 220px;
  border-radius: 50%;
}

/* Contact section */
#contact {
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  background-color: #fff;
  width: 120%;
  margin: 30px 0 20px -10%;
  padding-bottom: 10px;
}
#contact .contact-inside {
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  max-width: 1100px;
  display: block;
  margin: 0 auto;
  padding-top: 5px;
}
#contact .svgs {
  width: 280px;
  display: flex;
  margin: 20px auto 10px auto;
}
#contact figure {
  width: 50px;
  margin: 10px;
  box-sizing: border-box;
}
#contact img {
  border-radius: 50%;
}
#contact a {
  display: block;
  -webkit-transition: border 500ms, border-color 500ms;
  transition: border 500ms, border-color 500ms;
}
#contact a:hover img {
  border: 3px solid #ffc12b;
}

/* 404 section */
#four04 {
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  background-color: #fff;
  width: 120%;
  margin: 30px 0 10px -10%;
  padding-bottom: 10px;
}
#four04 .four04-inside {
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 51%;
  max-width: 1100px;
  display: block;
  margin: 30px auto;
}
#four04 p {
  text-align: center;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2em;
  line-height: 1.5em;
  width: 75%;
  display: block;
  margin: 0 auto 70px;
  font-weight: 400;
}
#four04 a {
  color: #00a3d9;
}
#four04 a:hover {
  color: #00488a;
}

/* Computer CSS drawing */
#project {
  display: flex;
  margin: 0 auto;
  width: 832px;
  max-width: 100%;
}

.responsive-wrap {
  width: 650px;
  height: 446.875px;
  max-width: 100%;
  display: block;
  margin: 0 auto 50px auto;
}

.desktop {
  z-index: 4;
  margin-left: 25px;
}

.screen-border {
  width: 100%;
  padding: 8.9375px 8.9375px;
  box-sizing: border-box;
  height: 365.5884375px;
  background: #d3d4d5;
  box-shadow: 0 0 4.46875px rgba(0, 0, 0, 0.33) inset;
  border-radius: 8px;
}

.screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 0 2.234375px rgba(0, 0, 0, 0.5) inset;
  border-radius: 2px;
}

.projlink {
  display: block;
  width: 100%;
  height: 100%;
}

.button {
  height: 0px;
  width: 0px;
  background-color: #c6c7c9;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
}

.mic {
  height: 0px;
  width: 0px;
  background-color: #c6c7c9;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
}

.desktop-stand {
  display: block;
  margin: 0 auto;
  width: 81.25px;
  opacity: 1;
}

.stand {
  width: 26.78px;
  height: 56.8871875px;
  background: #d3d4d5;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2.678px 1px rgba(0, 0, 0, 0.2) inset, 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

.bottom {
  width: 81.25px;
  height: 12.1996875px;
  background: #d3d4d5;
  box-shadow: 0 0 1.7875px rgba(0, 0, 0, 0.33) inset;
  border-radius: 3px 3px 0 0;
}

.tablet {
  width: 292.5px;
  height: 446.875px;
  z-index: 6;
  margin-right: -50px;
  margin-top: 100px;
  display: none;
}
.tablet .screen-border {
  padding: 28.6px 8.9375px;
}
.tablet .mic {
  height: 4.875px;
  width: 58.5px;
  margin-top: -14.8958333333px;
  margin-left: 116.1875px;
  border-radius: 20%;
  position: absolute;
}
.tablet .button {
  height: 19.5px;
  width: 19.5px;
  margin: 13px auto;
}

.mobile {
  width: 182px;
  height: 364px;
  z-index: 5;
  margin-left: -50px;
  margin-top: 40px;
}
.mobile .screen-border {
  padding: 36.196875px 8.9375px;
}
.mobile .mic {
  height: 4.875px;
  width: 58.5px;
  margin-top: -18.0984375px;
  margin-left: 54.16125px;
  border-radius: 20%;
  position: absolute;
}
.mobile .button {
  height: 21.45px;
  width: 21.45px;
  margin: 7.3734375px auto;
}

.leslie .screen {
  background: url("../assets/portfolio/leslie-desktop.jpg");
  background-size: cover;
}

.leslie .tablet .screen {
  background: Azure url("../assets/portfolio/leslie-tablet.jpg");
  background-size: cover;
}

.leslie .mobile .screen {
  background: Azure url("../assets/portfolio/leslie-mobile.jpg");
  background-size: cover;
}

.whogotlucilled .screen {
  background: url("../assets/portfolio/wgl-desktop.jpg");
  background-size: cover;
}

.whogotlucilled .tablet .screen {
  background: Azure url("../assets/portfolio/wgl-tablet.jpg");
  background-size: cover;
}

.whogotlucilled .mobile .screen {
  background: Azure url("../assets/portfolio/wgl-mobile.jpg");
  background-size: cover;
}

.cbc .screen {
  background: url("../assets/portfolio/cbc-desktop.jpg");
  background-size: cover;
}

.cbc .tablet .screen {
  background: Azure url("../assets/portfolio/cbc-tablet.jpg");
  background-size: cover;
}

.cbc .mobile .screen {
  background: Azure url("../assets/portfolio/cbc-mobile.jpg");
  background-size: cover;
}

.thewikifix .screen {
  background: url("../assets/portfolio/wikifix-desktop.jpg");
  background-size: cover;
}

.thewikifix .tablet .screen {
  background: Azure url("../assets/portfolio/wikifix-tablet.jpg");
  background-size: cover;
}

.thewikifix .mobile .screen {
  background: Azure url("../assets/portfolio/wikifix-mobile.jpg");
  background-size: cover;
}

.clayton .screen {
  background: url("../assets/portfolio/clayton-desktop.jpg");
  background-size: cover;
}

.clayton .tablet .screen {
  background: Azure url("../assets/portfolio/clayton-tablet.jpg");
  background-size: cover;
}

.clayton .mobile .screen {
  background: Azure url("../assets/portfolio/clayton-mobile.jpg");
  background-size: cover;
}

.darwins .screen {
  background: url("../assets/portfolio/darwins-desktop.jpg");
  background-size: cover;
}

.darwins .tablet .screen {
  background: Azure url("../assets/portfolio/darwins-tablet.jpg");
  background-size: cover;
}

.darwins .mobile .screen {
  background: Azure url("../assets/portfolio/darwins-mobile.jpg");
  background-size: cover;
}

.titledrops .screen {
  background: url("../assets/portfolio/titledrops-desktop.jpg");
  background-size: cover;
}

.titledrops .tablet .screen {
  background: Azure url("../assets/portfolio/titledrops-tablet.jpg");
  background-size: cover;
}

.titledrops .mobile .screen {
  background: Azure url("../assets/portfolio/titledrops-mobile.jpg");
  background-size: cover;
}

.millerlite .screen {
  background: url("../assets/portfolio/millerlite-desktop.jpg");
  background-size: cover;
}

.millerlite .tablet .screen {
  background: Azure url("../assets/portfolio/millerlite-tablet.jpg");
  background-size: cover;
}

.millerlite .mobile .screen {
  background: Azure url("../assets/portfolio/millerlite-mobile.jpg");
  background-size: cover;
}

.cheetos .screen {
  background: url("../assets/portfolio/cheetos-desktop.gif");
  background-size: cover;
}

.cheetos .tablet .screen {
  background: Azure url("../assets/portfolio/cheetos-tablet.jpg");
  background-size: cover;
}

.cheetos .mobile .screen {
  background: Azure url("../assets/portfolio/cheetos-mobile.png");
  background-size: cover;
}

.sprint .screen {
  background: url("../assets/portfolio/sprint-desktop.jpg");
  background-size: cover;
}

.sprint .tablet .screen {
  background: Azure url("../assets/portfolio/sprint-tablet.jpg");
  background-size: cover;
}

.sprint .mobile .screen {
  background: Azure url("../assets/portfolio/sprint-mobile.jpg");
  background-size: cover;
}

.gatorade .screen {
  background: url("../assets/portfolio/gatorade-desktop.jpg");
  background-size: cover;
}

.gatorade .tablet .screen {
  background: Azure url("../assets/portfolio/gatorade-tablet.jpg");
  background-size: cover;
}

.gatorade .mobile .screen {
  background: Azure url("../assets/portfolio/gatorade-mobile.jpg");
  background-size: cover;
}

/* footer section */
footer {
  position: relative;
  z-index: 11;
}
footer p {
  text-align: right;
  margin: 0 20px 10px 0;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
}

/* standings table */
#nl-west {
  width: 175px;
  font-family: "Source Sans Pro", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin: 0 auto;
}
#nl-west img {
  display: block;
  margin: 0 auto;
}
#nl-west .ari img {
  width: 35px;
}
#nl-west .lad img {
  width: 25.2px;
}
#nl-west .sd img {
  width: 26.25px;
}
#nl-west .sf img {
  width: 23.8px;
}
#nl-west .col img {
  width: 31.5px;
}
#nl-west .row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}
#nl-west .row .team {
  width: 25%;
}
#nl-west .row .wins {
  width: 25%;
}
#nl-west .row .losses {
  width: 25%;
}
#nl-west .row .games-back {
  width: 25%;
}

.mobile-standings {
  display: none;
  margin: 0 auto;
  width: 45px;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 18px);
}
.mobile-standings.open {
  opacity: 0;
  transition: all 500ms;
}
.mobile-standings img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 639px) {
  nav.open .mobile-standings {
    display: block;
  }
}

/* Bouncing arrow - credit to dodozhang21 */
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  60% {
    -moz-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  60% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  70% {
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@media screen and (max-width: 882px) {
  #project {
    width: 524.5px;
  }
  .responsive-wrap.desktop {
    display: none;
  }
  .responsive-wrap.tablet {
    display: block;
  }
  .responsive-wrap.tablet {
    margin: 30px 0 0 0;
  }
  .responsive-wrap.mobile {
    margin-left: 50px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 559.5px) {
  .responsive-wrap.tablet {
    display: none;
  }
  .responsive-wrap.mobile {
    display: block;
    margin: 0 auto;
  }
}
/* Responsive */
@media screen and (max-width: 1100px) {
  #featured .featured-block--two {
    width: 500px;
    max-width: 90%;
  }
}
@media screen and (max-width: 970px) {
  .experience .svgs {
    width: 750px;
  }
}
@media screen and (max-width: 850px) {
  nav {
    position: absolute;
    right: 0;
    border-left: 0;
    width: 35px;
  }
  nav ul {
    text-align: center;
    margin: 55px auto 0 auto;
    width: 300px;
  }
  nav ul li {
    margin: 20px;
    font-size: 42px;
  }
  .menu-button {
    top: 15px;
    background-color: transparent;
  }
  .menu-button:hover {
    background-color: transparent;
  }
  nav.open {
    margin-right: 0;
    width: 100%;
  }
  nav.open .menu-button {
    margin-left: 17px;
    background-color: transparent;
  }
  nav.open .menu-button:hover {
    background-color: transparent;
  }
  nav .navBottom {
    position: absolute;
    width: 100%;
    bottom: 20px;
  }
  .kstardesigns-logo {
    width: 400px;
  }
  header h1 {
    font-size: 0.8em;
    margin-top: -3px;
    margin-left: -100px;
    -webkit-transform: rotate(-11deg);
    -moz-transform: rotate(-11deg);
    -ms-transform: rotate(-11deg);
    transform: rotate(-11deg);
    outline: 1px solid transparent;
    -webkit-transform-origin: 50% 51%;
  }
  .stripe {
    height: auto;
    padding-bottom: 30px;
  }
  .experience .svgs {
    width: 100%;
    margin: 40px auto 20px auto;
  }
  .experience .svgs--companies {
    width: 80%;
  }
  .experience figure {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .experience .svgs--companies figure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .experience figure figcaption {
    position: relative;
  }
  .experience figure.webcom img, .experience figure.petsmart img, .experience figure.asu img {
    margin: 10px auto;
  }
  .experience figure.prizelogic img {
    height: 36px;
  }
  .experience figure.bannerhealth img {
    height: 36px;
  }
}
@media screen and (max-width: 750px) {
  .experience .svgs--companies figure {
    width: 33.333%;
  }
}
@media screen and (max-width: 650px) {
  .down {
    bottom: 40px;
  }
  header {
    top: calc(50% - 80px);
  }
  #portfolio, #featured {
    padding-bottom: 20px;
  }
  #portfolio .portfolio-top {
    width: 300px;
  }
  #featured .featured-top {
    width: 450px;
    max-width: 90%;
  }
  #portfolio .portfolio-block {
    width: 100%;
  }
  #portfolio .portfolio-block .item-name, #featured .featured-block .featured-item-name {
    font-size: 22px;
    line-height: 25px;
    margin: 0 10px;
    width: 240px;
  }
  #portfolio .portfolio-block img, #featured .featured-block img {
    width: 18px;
    height: 18px;
  }
  #portfolio .portfolio-block img.left, #featured .featured-block img.left {
    padding: 4px 2px 4px 0;
  }
  #portfolio .portfolio-block img.right, #featured .featured-block img.right {
    padding: 4px 0 4px 2px;
  }
  #about p {
    width: 70%;
  }
  #four04 h2.four04 {
    font-size: 10em;
  }
  #featured #featured-project .featured-item-links {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  .experience .svgs--companies figure {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .desktop-stand {
    display: none;
  }
  .innerwrap .c1 {
    display: none;
  }
  .innerwrap .c2 {
    width: 100%;
  }
  .innerwrap .c3 {
    display: none;
  }
  .innerwrap .c2 .innerbox {
    height: 20%;
    margin-bottom: 5%;
  }
  .innerwrap .c2 .innerbox:nth-child(2) {
    background-color: #2ab573;
  }
  .innerwrap .c2 .innerbox:last-child {
    background-color: #ff9b00;
  }
  .responsive-wrap.tablet {
    margin: 0 auto;
  }
}
@media screen and (max-width: 440px) {
  .kstardesigns-logo {
    width: 300px;
  }
  nav ul li {
    font-size: 34px;
  }
  header h1 {
    margin-top: -2px;
    margin-left: -70px;
  }
  header h1 span {
    display: none;
  }
  .stripe {
    padding-bottom: 20px;
  }
  .experience figure {
    height: 120px;
  }
  .experience figure img {
    height: 50px;
  }
  .experience figure.prizelogic img {
    height: 32px;
  }
  .experience figure.bannerhealth img {
    height: 36px;
  }
  #contact .svgs {
    width: 300px;
    justify-content: center;
  }
  #contact .svgs img {
    width: 40px;
    display: block;
    margin: 0 auto;
  }
  #contact figure {
    margin: 10px 5px;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.8em;
  }
  #four04 h2.four04 {
    font-size: 6em;
  }
  #four04 p {
    font-size: 1em;
    margin-top: 0;
    line-height: 1.2em;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 360px) {
  .experience figure figcaption {
    font-size: 1.1em;
  }
  #portfolio .portfolio-block, #featured .featured-block {
    width: 90%;
  }
  #portfolio .portfolio-block .item-description, #featured .featured-block .featured-item-description, #featured .featured-item-links {
    font-size: 1em;
  }
  #portfolio .portfolio-block .item-name, #featured .featured-block .featured-item-name {
    width: 210px;
  }
  #about p {
    font-size: 1em;
  }
  .experience .svgs--companies figure.millerlite img, .experience .svgs--companies figure.elmers img, .experience .svgs--companies figure.mcdonalds img, .experience .svgs--companies figure img {
    width: 80px;
  }
  .experience .svgs--companies figure.pepsico img {
    width: 110px;
  }
  .experience .svgs--companies figure.americanexpress img {
    width: 55px;
  }
}
[data-kooltip] {
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

.kooltip {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--tip-color);
  border-radius: 4px;
  color: #fff;
  padding: 3px 8px;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
}
.kooltip.multiline {
  max-width: 100%;
  white-space: normal;
}
.kooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--tip-color);
}
.kooltip--left-aligned::after {
  left: var(--left-arrow);
}
.kooltip--right-aligned::after {
  left: var(--right-arrow);
}
.kooltip--top-aligned::after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 0;
  border-bottom: 8px solid var(--tip-color);
  top: -8px;
  bottom: initial;
}

/*# sourceMappingURL=main.css.map */
