@import url(https://fonts.googleapis.com/css?family=Anton|Montserrat:400,500,700);
@import url("https://fonts.googleapis.com/css?family=Cookie");
html {
  font-size: 62.5%;
  scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; }

body {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif; }
  body h1 {
    font-family: "Cookie", cursive; }

img {
  max-width: 100%;
  display: block; }

.wrapper {
  max-width: 1100px;
  margin: 0 auto; }

p {
  line-height: 2.8rem;
  font-weight: 500; }

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

a:focus {
  outline: thin dotted; }

a:active, a:hover {
  outline: 0; }

h1 {
  font-size: 2em; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em; }

pre {
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: \201C \201D \2018 \2019; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button, input {
  line-height: normal; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], input[disabled] {
  cursor: default; }

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body, figure {
  margin: 0; }

legend, button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: '';
  clear: both;
  height: 0; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.visuallyHidden {
  /* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

header {
  padding-top: 10px;
  padding-bottom: 30px;
  position: relative; }
  header .headingNav {
    text-align: center; }
    header .headingNav ul {
      list-style: none;
      margin: 0;
      padding: 0; }

header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image: -webkit-radial-gradient(10px -5px, circle, transparent 12px, #FAF9FF 13px);
  background-image: -o-radial-gradient(10px -5px, circle, transparent 12px, #FAF9FF 13px);
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, #FAF9FF 13px); }

header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image: -webkit-radial-gradient(10px 15px, circle, #FAF9FF 12px, transparent 13px);
  background-image: -o-radial-gradient(10px 15px, circle, #FAF9FF 12px, transparent 13px);
  background-image: radial-gradient(circle at 10px 15px, #FAF9FF 12px, transparent 13px); }

.headingNav ul li {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 0; }
  .headingNav ul li a {
    text-decoration: none;
    position: relative;
    padding: 10px 30px;
    color: black;
    background: transparent;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 1; }
  .headingNav ul li a:hover {
    color: white; }
  .headingNav ul li a::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#f41067), to(#fccb11));
    background: -webkit-linear-gradient(left, #f41067, #fccb11);
    background: -o-linear-gradient(left, #f41067, #fccb11);
    background: linear-gradient(to right, #f41067, #fccb11);
    z-index: -1;
    -webkit-transition: opacity 0.8s linear;
    -o-transition: opacity 0.8s linear;
    transition: opacity 0.8s linear;
    opacity: 0; }
  .headingNav ul li a:hover::before {
    opacity: 1; }

.menu {
  padding-left: 50px;
  text-transform: uppercase;
  font-weight: 500; }

ul.navigator.open {
  display: none; }

.hamburger {
  display: none; }

.landing {
  background: #FAF9FF;
  padding: 20px 0;
  height: 100vh;
  position: relative; }

.flexContainer {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.helloIam h1 {
  font-size: 15rem;
  background: -webkit-gradient(linear, left top, right top, from(#f41067), to(#fccb11));
  background: -webkit-linear-gradient(left, #f41067, #fccb11);
  background: -o-linear-gradient(left, #f41067, #fccb11);
  background: linear-gradient(to right, #f41067, #fccb11);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin: 0;
  font-family: 'Cookie', cursive;
  padding: 0 11px 7px 3px; }

.firstP {
  margin-bottom: 0; }

.helloIam p {
  padding-left: 10%;
  font-size: 3.0rem;
  font-weight: 700; }

.helloIam img {
  width: 30px;
  opacity: 0.35; }

.square {
  position: absolute;
  top: 25%;
  left: 25%; }

.hollowSquare {
  position: absolute;
  right: 55%;
  bottom: 15%; }

.circleStripes {
  position: absolute;
  right: 32%;
  top: 20%; }

.cross {
  position: absolute;
  right: 70%;
  bottom: 20%; }

.triangleStripes {
  position: absolute;
  right: 75%;
  top: 70%; }

.hollowTraingle {
  position: absolute;
  left: 30%;
  top: 20%; }

.zigzag {
  position: absolute;
  left: 68%;
  top: 76%; }

.landing::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image: -webkit-radial-gradient(10px -5px, circle, transparent 12px, white 13px);
  background-image: -o-radial-gradient(10px -5px, circle, transparent 12px, white 13px);
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, white 13px); }

.landing::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image: -webkit-radial-gradient(10px 15px, circle, white 12px, transparent 13px);
  background-image: -o-radial-gradient(10px 15px, circle, white 12px, transparent 13px);
  background-image: radial-gradient(circle at 10px 15px, white 12px, transparent 13px); }

.aboutMe h2 {
  font-family: "Cookie", cursive;
  font-size: 5.0rem;
  color: #f41067;
  margin: 0; }

.hiddenOnDesktop {
  display: none; }

.about {
  position: relative;
  padding-bottom: 70px; }

.flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 50px;
  padding-top: 30px; }

.paragraph {
  margin-left: 5%;
  padding-top: 14%; }

.myPhoto {
  max-width: 100%;
  margin-top: 10%; }

.about:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image: -webkit-radial-gradient(10px -5px, circle, transparent 12px, #FAF9FF 13px);
  background-image: -o-radial-gradient(10px -5px, circle, transparent 12px, #FAF9FF 13px);
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, #FAF9FF 13px); }

.about:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image: -webkit-radial-gradient(10px 15px, circle, #FAF9FF 12px, transparent 13px);
  background-image: -o-radial-gradient(10px 15px, circle, #FAF9FF 12px, transparent 13px);
  background-image: radial-gradient(circle at 10px 15px, #FAF9FF 12px, transparent 13px); }

.myWork {
  background: #FAF9FF;
  padding-bottom: 90px;
  position: relative; }
  .myWork h2 {
    margin: 0;
    padding: 60px 0;
    font-family: "Cookie", cursive;
    font-size: 5.0rem;
    color: #f41067;
    text-align: center; }

.myWork:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image: -webkit-radial-gradient(10px -5px, circle, transparent 12px, white 13px);
  background-image: -o-radial-gradient(10px -5px, circle, transparent 12px, white 13px);
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, white 13px); }

.myWork:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image: -webkit-radial-gradient(10px 15px, circle, white 12px, transparent 13px);
  background-image: -o-radial-gradient(10px 15px, circle, white 12px, transparent 13px);
  background-image: radial-gradient(circle at 10px 15px, white 12px, transparent 13px); }

.projects {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (400px)[4];
  grid-template-rows: repeat(4, 400px);
  grid-row-gap: 50px; }
  .projects .projectCard {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 50px;
    column-gap: 50px;
    border: 2px solid #fa962a;
    padding: 40px 40px 40px 40px; }
    .projects .projectCard .rightAlign {
      text-align: right; }
    .projects .projectCard .description h3 {
      margin-bottom: 10px; }
    .projects .projectCard .description h4 {
      margin-top: 0;
      font-weight: 300; }
    .projects .projectCard a {
      text-decoration: none;
      position: relative;
      color: white;
      font-weight: 500;
      padding: 8px 30px;
      background: -webkit-gradient(linear, left top, right top, from(#f41067), to(#fccb11));
      background: -webkit-linear-gradient(left, #f41067, #fccb11);
      background: -o-linear-gradient(left, #f41067, #fccb11);
      background: linear-gradient(to right, #f41067, #fccb11);
      border-radius: 50px;
      -webkit-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear;
      z-index: 1; }
    .projects .projectCard a::before {
      position: absolute;
      content: "";
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -webkit-gradient(linear, left top, right top, from(#fccb11), to(#f41067));
      background: -webkit-linear-gradient(left, #fccb11, #f41067);
      background: -o-linear-gradient(left, #fccb11, #f41067);
      background: linear-gradient(to right, #fccb11, #f41067);
      border-radius: 50px;
      z-index: -1;
      -webkit-transition: opacity 0.5s linear;
      -o-transition: opacity 0.5s linear;
      transition: opacity 0.5s linear;
      opacity: 0; }
    .projects .projectCard a:hover::before {
      opacity: 1; }
    .projects .projectCard .live {
      padding: 8px 42px;
      margin-right: 10px; }
    .projects .projectCard .image p {
      margin-bottom: 0; }

.projectCardBanners {
  border: 2px solid #fa962a;
  padding: 40px; }
  .projectCardBanners .banners {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 2;
    grid-template-rows: 2;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-gap: 50px; }
    .projectCardBanners .banners .grow {
      -webkit-transition: all .2s ease-in-out;
      -o-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out; }
    .projectCardBanners .banners .grow:hover {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); }
    .projectCardBanners .banners .bannerUnit {
      cursor: pointer; }

.bannerText {
  padding-bottom: 30px;
  margin-top: -20px; }

h2 .bannerTextTitle {
  padding-bottom: 0; }

.skills {
  position: relative;
  padding-bottom: 80px;
  padding-top: 60px; }
  .skills h2 {
    font-family: "Cookie", cursive;
    font-size: 5.0rem;
    color: #f41067;
    margin-top: 0;
    text-align: center; }

.hidden {
  display: none; }

.container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-row-gap: 64px; }
  .container .icon {
    border: 1px solid transparent;
    font-size: 100px;
    color: #fccb11; }
  .container .box {
    text-align: center; }
    .container .box p {
      font-weight: 700; }
    .container .box .gsapImage img, .container .box .shopifyImage img {
      margin: 0 auto;
      height: 100px; }
    .container .box .firebase {
      width: 43%;
      margin: 0 auto; }
    .container .box .command {
      font-size: 95px;
      font-weight: 300;
      color: #fccb11; }

.skills:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image: -webkit-radial-gradient(10px -5px, circle, transparent 12px, #FAF9FF 13px);
  background-image: -o-radial-gradient(10px -5px, circle, transparent 12px, #FAF9FF 13px);
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, #FAF9FF 13px); }

.skills:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image: -webkit-radial-gradient(10px 15px, circle, #FAF9FF 12px, transparent 13px);
  background-image: -o-radial-gradient(10px 15px, circle, #FAF9FF 12px, transparent 13px);
  background-image: radial-gradient(circle at 10px 15px, #FAF9FF 12px, transparent 13px); }

.contactMe {
  background: #FAF9FF;
  padding-bottom: 60px;
  position: relative; }
  .contactMe h2 {
    margin-top: 0;
    padding-top: 60px;
    font-family: "Cookie", cursive;
    font-size: 5.0rem;
    color: #f41067;
    text-align: center;
    margin-bottom: 20px; }
  .contactMe a {
    text-decoration: none;
    color: black;
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear; }
  .contactMe a:hover {
    color: #fccb11; }
  .contactMe .container {
    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-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .contactMe form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .contactMe form input {
      width: 400px;
      border: none;
      margin: 5px 0;
      padding: 10px; }
    .contactMe form textarea {
      border: none;
      margin-top: 5px;
      margin-bottom: 20px;
      height: 200px; }
    .contactMe form textarea:placeholder-shown {
      padding-top: 10px;
      padding-left: 10px; }
    .contactMe form input.submitButton {
      margin: 0 auto; }
    .contactMe form .submitButton {
      text-decoration: none;
      position: relative;
      color: white;
      font-weight: 500;
      padding: 10px 15px;
      background: -webkit-gradient(linear, left top, right top, from(#f41067), to(#fccb11));
      background: -webkit-linear-gradient(left, #f41067, #fccb11);
      background: -o-linear-gradient(left, #f41067, #fccb11);
      background: linear-gradient(to right, #f41067, #fccb11);
      border-radius: 50px;
      width: 60%;
      z-index: 1; }
    .contactMe form .submitButton:hover {
      background: -webkit-gradient(linear, left top, right top, from(#fccb11), to(#f41067));
      background: -webkit-linear-gradient(left, #fccb11, #f41067);
      background: -o-linear-gradient(left, #fccb11, #f41067);
      background: linear-gradient(to right, #fccb11, #f41067); }

.contactIcons {
  font-size: 40px;
  color: #f41067;
  text-align: center; }
  .contactIcons a {
    text-decoration: none;
    color: #f41067; }

.contactMe:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image: -webkit-radial-gradient(10px -5px, circle, transparent 12px, white 13px);
  background-image: -o-radial-gradient(10px -5px, circle, transparent 12px, white 13px);
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, white 13px); }

.contactMe:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image: -webkit-radial-gradient(10px 15px, circle, white 12px, transparent 13px);
  background-image: -o-radial-gradient(10px 15px, circle, white 12px, transparent 13px);
  background-image: radial-gradient(circle at 10px 15px, white 12px, transparent 13px); }

.circleC {
  position: absolute;
  left: 20%;
  bottom: 20%; }

.squareC {
  position: absolute;
  left: 15%;
  bottom: 45%;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg); }

.triangleC {
  position: absolute;
  right: 15%;
  bottom: 35%;
  -webkit-transform: rotate(80deg);
  -ms-transform: rotate(80deg);
  transform: rotate(80deg); }

.circleStripesC {
  position: absolute;
  right: 10%;
  top: 10%;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg); }

.crossC {
  position: absolute;
  right: 25%;
  bottom: 10%;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg); }

.triangleStripesC {
  position: absolute;
  left: 5%;
  top: 10%;
  -webkit-transform: rotate(-220deg);
  -ms-transform: rotate(-220deg);
  transform: rotate(-220deg); }

.hollowSquareC {
  position: absolute;
  left: 18%;
  top: 25%;
  -webkit-transform: rotate(1deg);
  -ms-transform: rotate(1deg);
  transform: rotate(1deg); }

.zigzagC {
  position: absolute;
  right: 20%;
  bottom: 65%;
  -webkit-transform: rotate(-220deg);
  -ms-transform: rotate(-220deg);
  transform: rotate(-220deg); }

.triangleC, .squareC, .circleC, .circleStripesC, .crossC, .hollowTraingleC, .triangleStripesC, .hollowTraingleC, .zigzagC .hollowSquareC {
  width: 30px;
  opacity: 0.35; }

footer {
  text-align: center; }

.squareC {
  position: absolute;
  left: 5%;
  bottom: 45%;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg); }

.triangleC {
  position: absolute;
  right: 10%;
  bottom: 35%;
  -webkit-transform: rotate(80deg);
  -ms-transform: rotate(80deg);
  transform: rotate(80deg); }

.circleStripesC {
  position: absolute;
  right: 10%;
  top: 10%;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg); }

.crossC {
  position: absolute;
  right: 25%;
  bottom: 10%;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg); }

.hollowTraingleC {
  position: absolute;
  left: 18%;
  top: 20%;
  -webkit-transform: rotate(130deg);
  -ms-transform: rotate(130deg);
  transform: rotate(130deg); }

.zigzagC {
  position: absolute;
  right: 7%;
  bottom: 65%;
  -webkit-transform: rotate(-220deg);
  -ms-transform: rotate(-220deg);
  transform: rotate(-220deg); }

@media (max-width: 610px) {
  .triangleC, .squareC, .circleC, .circleStripesC, .crossC, .hollowTraingleC, .triangleStripesC, .hollowTraingleC, .zigzagC {
    display: none; } }

@media (max-width: 1100px) {
  .landing .helloIam .square {
    left: 19%; } }

@media (max-width: 1000px) {
  .landing .helloIam .square {
    left: 17%; }
  .landing .helloIam .triangleStripes {
    right: 85%; }
  .landing .helloIam .circleStripes {
    right: 22%;
    top: 13%; }
  .landing .helloIam .zigzag {
    left: 79%; } }

@media (max-width: 500px) {
  .helloIam img {
    width: 20px; } }

@media (max-width: 800px) {
  header {
    padding-top: 0; } }

@media (max-width: 500px) {
  .helloIam h1 {
    font-size: 12rem; } }

@media (max-width: 410px) {
  .helloIam h1 {
    font-size: 10rem; }
  .helloIam p {
    font-size: 2rem; }
  header .hamburger {
    width: 30px; }
  header .menu {
    padding-left: 40px; } }

@media (max-width: 345px) {
  .helloIam h1 {
    font-size: 8rem; } }

@media (max-width: 800px) {
  header {
    position: relative;
    padding-bottom: 60px; }
  .hamburger {
    display: block; }
  .show.navigator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  ul.navigator {
    display: none;
    position: absolute;
    top: 55px;
    left: 30px;
    z-index: 1;
    width: 100%;
    text-align: left; }
  ul.navigator li {
    padding: 5px 0; }
  ul.navigator li a {
    padding: 5px 15px; } }

@media (max-width: 410px) {
  ul.navigator li a {
    font-size: 1.6rem; } }

@media (max-width: 945px) {
  .hiddenOnDesktop {
    display: block;
    text-align: center;
    padding-top: 5%; }
  .hiddenOnMobile {
    display: none; }
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .myPhoto img {
    margin: 0 auto;
    width: 320px; }
  .myWork h2 {
    padding-top: 0; }
  .myPhoto {
    margin-top: 0; }
  .paragraph {
    padding-top: 5%; }
  .flex {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; }
  .about {
    padding-bottom: 60px; } }

@media (max-width: 1200px) {
  .projects .projectCard {
    border: none;
    padding: 0 15px; }
  .projects {
    grid-row-gap: 0; }
  .projectCardBanners {
    border: none; }
  .myWork {
    padding-bottom: 60px; } }

@media (max-width: 950px) {
  .projects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .projects .projectCard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .projectCard.reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  .projectCardBanners .banners {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 3;
    grid-template-rows: 3;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px; }
    .projectCardBanners .banners .bannerUnit {
      width: 300px;
      margin: 0 auto; }
  .description {
    margin: 0 25%;
    margin-top: 20px;
    text-align: center; }
  .image {
    margin-top: 40px; }
  .image p {
    font-weight: 300;
    text-align: center; }
  .myWork h2 {
    padding: 60px 0 0 0; }
  .projects .projectCard .rightAlign {
    text-align: center; }
  .myWork {
    padding-bottom: 60px; } }

@media (max-width: 575px) {
  .aFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .aFlex a {
      margin-top: 5px; }
  .projects .projectCard .live {
    margin-right: 0; } }

@media (max-width: 535px) {
  .description {
    margin: 0 15%; }
  .image p {
    font-size: 1.6rem; } }

@media (max-width: 750px) {
  .container .icon {
    font-size: 70px; }
  .container .box .gsapImage img {
    height: 70px; }
  .container .box .shopifyImage img {
    height: 70px; }
  .box p {
    display: none; }
  .firebase, .command, .responsiveDesign {
    display: none; }
  .hidden {
    display: block; } }

@media (max-width: 465px) {
  .contactMe form input {
    width: 100%; } }

.hamburger {
  width: 40px;
  height: 20px;
  position: relative;
  margin: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  position: absolute; }

.hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: black;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

.hamburger span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0; }

.hamburger span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px; }

.hamburger span:nth-child(1), .hamburger span:nth-child(2) {
  top: 0px; }

.hamburger span:nth-child(3), .hamburger span:nth-child(4) {
  top: 18px; }

.hamburger span:nth-child(5), .hamburger span:nth-child(6) {
  top: 36px; }

.hamburger.open span:nth-child(1), #nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.hamburger.open span:nth-child(2), #nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.hamburger.open span:nth-child(1) {
  left: 2px;
  top: 7px; }

.hamburger.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px; }

.hamburger.open span:nth-child(3) {
  left: -50%;
  opacity: 0; }

.hamburger.open span:nth-child(4) {
  left: 100%;
  opacity: 0; }

.hamburger.open span:nth-child(5) {
  left: 5px;
  top: 29px; }

.hamburger.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px; }

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

a:focus {
  outline: thin dotted; }

a:active, a:hover {
  outline: 0; }

h1 {
  font-size: 2em; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em; }

pre {
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: \201C \201D \2018 \2019; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button, input {
  line-height: normal; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], input[disabled] {
  cursor: default; }

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body, figure {
  margin: 0; }

legend, button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }
