                                    /* Comment Standards */
                                    /**
* Unwieldy CSS is no fun, so please follow this comment style guide
* to keep this document legible and sensible.
**/
                                    /* ===================================================
   MAIN HEADINGS look like this - all caps, top and bottom comment bar
   =================================================== */
                                    /*
   Section Headings Look Like This - capital case, no top comment bar
   =================================================== */
                                    /**** Subsection 1 Headings Look Like This - capital case, 4 stars ****/
                                    /**** Subsection 2 headings look like this - sentence case, 2 stars ****/
                                    /* Single line comments look like this */
                                    /**
* Multi-line comments look like this.
* Please try not to exceed 70 columns per line.
* Please follow the same indentations used here
*
* @FLAG can be used to highlight any specific issues that need attention
*
**/
                                    /* ===================================================
   GLOBAL STYLES
   =================================================== */
                                    /* 
   Global Layout
   =================================================== */

                                    html,
                                    body {
                                      height: 100vh;
                                      padding: 0;
                                      margin: 0;
                                    }

                                    body {
                                      padding-top: 0;
                                      line-height: 1.5rem;
                                    }
                                    /* 
   Typography
   =================================================== */
                                    /**** Fluid Typography ****/

                                    html {
                                      font-size: calc(0.875em + 0.25 * (100vw - 80em) / 40);
                                      font-size: -webkit-calc(87.5% + 0.25 * (100vw - 8000%) / 40);
                                    }

                                    h1 {
                                      font-size: 4.768rem;
                                    }

                                    h2 {
                                      font-size: 3.052rem;
                                    }

                                    h3 {
                                      font-size: 2.441rem;
                                    }

                                    h4 {
                                      font-size: 1.953rem;
                                    }

                                    h5 {
                                      font-size: 1.563rem;
                                    }

                                    h6 {
                                      font-size: 1.25rem;
                                    }

                                    p {
                                      font-size: 1rem;
                                    }

                                    li {
                                      font-size: 1rem;
                                    }
                                    /**** Web Fonts ****/

                                    h1,
                                    h2,
                                    h3,
                                    h4,
                                    h5,
                                    h6 {
                                      font-family: 'Muli', sans-serif;
                                    }

                                    p,
                                    li {
                                      font-family: 'Montserrat', sans-serif;
                                      font-weight: 200;
                                    }
                                    /*
    @media screen and (min-width: 20rem) {
    html {
        font-size: calc(0.8rem + 1.2 * ((100vw - 20rem) / 30));
    }
    }

    @media screen and (min-width: 75rem) {
    html {
        font-size: 2rem;
    }
    }

    @media screen and (min-width: 75em) {
        html { font-size: 1.2em; }    
    }
    */
                                    /* 
     Global Styles
   =================================================== */

                                    iframe {
                                      border: none;
                                      overflow: hidden;
                                    }
                                    /*
                              Standard Page Header Section
   =================================================== */
                                    /* Header */

                                    header {
                                      height: 100vh;
                                      margin: 0;
                                      padding: 0;
                                    }

                                    header .header-banner-code,
                                    header .header-banner-create,
                                    header .header-banner-music,
                                    header .header-banner-connect {
                                      width: 100%;
                                      height: 100vh;
                                      background-attachment: fixed;
                                      background-position: top;
                                      background-repeat: no-repeat;
                                      background-size: cover;
                                    }

                                    header .header-banner-code {
                                      background-image: url("../img/plx-img1.jpeg");
                                    }

                                    header .header-banner-music {
                                      background-image: url("../img/boysinging.jpeg");
                                    }

                                    header .header-banner-create {
                                      background-image: url("../img/manlivesmoke.jpeg");
                                    }

                                    header .header-banner-contact {
                                      background-image: url("../img/");
                                      background-color: #fff;
                                      /*Fallback*/
                                    }
                                    /* Nav */

                                    .nav-container {
                                      position: absolute;
                                      margin: 0 auto;
                                      top: 25%;
                                      left: 50%;
                                      width: 50%;
                                      height: 0;
                                      -webkit-box-sizing: border-box;
                                      box-sizing: border-box;
                                      text-align: center;
                                      -webkit-transform: translateX(-50%);
                                      transform: translateX(-50%);
                                      -webkit-transition: width 0.7s, height 1s;
                                      -webkit-transition: width 0.7s, height 0.8s 0.1s;
                                      -webkit-transition: width 0.7s, height 0.1s 0.8s;
                                      -webkit-transition: width 0.7s;
                                      transition: width 0.7s;
                                      z-index: 1000;
                                    }

                                    .fixed-nav {
                                      position: fixed;
                                      top: 0;
                                      right: 0;
                                      width: 100%;
                                      height: 4rem;
                                      background: #333;
                                      -webkit-box-shadow: 0 1px 8px rgba(33, 33, 33, 0.6);
                                      box-shadow: 0 1px 8px rgba(33, 33, 33, 0.6);
                                      z-index: 20;
                                    }

                                    .logo {
                                      position: relative;
                                      display: -webkit-box;
                                      display: -ms-flexbox;
                                      display: flex;
                                      -webkit-box-align: center;
                                      -ms-flex-align: center;
                                      align-items: center;
                                      -webkit-box-pack: center;
                                      -ms-flex-pack: center;
                                      justify-content: center;
                                      margin: 0 auto;
                                      color: #0A0;
                                      height: inherit;
                                      background: #333;
                                      opacity: 0;
                                      z-index: 0;
                                      -webkit-transition: opacity 1s;
                                      transition: opacity 1s;
                                    }

                                    .logo img {
                                      position: absolute;
                                      top: 20%;
                                      left: 4rem;
                                      height: 60%;
                                    }

                                    .logo.nav-top {
                                      opacity: 1;
                                    }

                                    .nav-links ul {
                                      margin: 0 auto;
                                      padding: 0;
                                      display: -webkit-box;
                                      display: -ms-flexbox;
                                      display: flex;
                                      -webkit-box-pack: justify;
                                      -ms-flex-pack: justify;
                                      justify-content: space-evenly;
                                      list-style: none;
                                    }

                                    .nav-links li {
                                      position: relative;
                                    }

                                    .nav-links li a {
                                      text-decoration: none;
                                      color: #bbb;
                                      -webkit-transition: color 0.2s;
                                      transition: color 0.2s;
                                    }

                                    .nav-links li a:hover {
                                      color: #fff;
                                    }

                                    .nav-links .active {
                                      color: rgb(34, 132, 255);
                                    }

                                    .nav-links .active:before {
                                      height: 0;
                                    }

                                    .nav-links li:before {
                                      content: "";
                                      position: absolute;
                                      margin-top: 0.8rem;
                                      margin-left: 0;
                                      width: 0;
                                      height: 0.5rem;
                                      z-index: -10;
                                      opacity: 0.7;
                                      -webkit-transition: all 0.6s ease-in-out;
                                      transition: all 0.6s ease-in-out;
                                    }

                                    .nav-links li:nth-of-type(1):before {
                                      background: skyblue;
                                    }

                                    .nav-links li:nth-of-type(2):before {
                                      background: limegreen;
                                    }

                                    .nav-links li:nth-of-type(3):before {
                                      background: darkorange;
                                    }

                                    .nav-links li:nth-of-type(4):before {
                                      background: rgb(34, 132, 255);
                                    }

                                    .nav-links li:hover:before {
                                      width: 4rem;
                                    }

                                    .title {
                                      position: relative;
                                      height: 4rem;
                                      display: table;
                                      text-transform: uppercase;
                                      letter-spacing: 0.2rem;
                                      margin: 0 auto;
                                      color: #fff;
                                      background: #333;
                                      z-index: 100;
                                      -webkit-box-shadow: 1px 2px 14px rgba(33, 33, 33, 0.8);
                                      box-shadow: 0 3px 5px rgba(33, 33, 33, 0.4);
                                    }

                                    .title.no-shadow {
                                      -webkit-box-shadow: none;
                                      box-shadow: none;
                                    }

                                    .nav-container:hover~.under-text span {
                                      background-color: #00ccff;
                                      color: #333;
                                      font-weight: 200;
                                    }

                                    .title h5 {
                                      display: table-cell;
                                      vertical-align: middle;
                                    }

                                    .nav-container nav {
                                      position: relative;
                                      margin: 0 auto;
                                      height: inherit;
                                      opacity: 0;
                                      z-index: 100;
                                      background: #333;
                                      -webkit-transition: opacity 1s;
                                      transition: opacity 1s;
                                    }

                                    .nav-container nav.nav-top {
                                      opacity: 1;
                                    }

                                    nav ul {
                                      display: -webkit-box;
                                      display: -ms-flexbox;
                                      display: flex;
                                      -webkit-box-align: center;
                                      -ms-flex-align: center;
                                      align-items: center;
                                      -webkit-box-pack: start;
                                      -ms-flex-pack: start;
                                      justify-content: flex-start;
                                      color: #A0A;
                                      height: inherit;
                                      margin: 0 auto;
                                      list-style-type: none;
                                      text-align: left;
                                    }

                                    nav ul li {
                                      display: inline;
                                      line-height: inherit;
                                      margin-left: 10px;
                                    }

                                    nav ul li a {
                                      text-decoration: none;
                                    }

                                    .under-text {
                                      position: fixed;
                                      opacity: 1;
                                      top: calc(25% + 3rem);
                                      right: 50%;
                                      -webkit-transform: translateX(50%);
                                      transform: translateX(50%);
                                      z-index: 0;
                                    }

                                    .under-text p {
                                      width: 50%;
                                      background: #fff;
                                      color: #333;
                                      text-transform: uppercase;
                                      letter-spacing: 0.2rem;
                                      margin: 0 auto;
                                      text-align: center;
                                      padding: 2rem;
                                    }

                                    .under-text span {
                                      display: block;
                                      width: 100%;
                                      background-color: #333;
                                      color: #fff;
                                      font-weight: 100;
                                      text-align: center;
                                      -webkit-transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, font-weight 0.4s ease-in-out;
                                      transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, font-weight 0.4s ease-in-out;
                                    }
                                    /**** Parallax ****/
                                    /*
.parallax {
  position: relative;
  height: 50vh;
  perspective: 1px;
  overflow-x: hidden;
  overflow-y: auto;
}

.parallax-group {
  position: relative;
  height: 100vh;
  transform-style: preserve-3d;
}

.parallax-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.parallax-layer-base {
  transform: translateZ(-2px) scale(3);
}

.parallax-layer-back {
  transform: translateZ(-1px) scale(2);
  background-image: url("../img/plx-img1.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
*/
                                    /* 
   Standard Page Nav Section (no overlay)
   =================================================== */
                                    /*
   Standard Page Footer
   =================================================== */

                                    .footer-page {
                                      display: -webkit-box;
                                      display: -ms-flexbox;
                                      display: flex;
                                      -webkit-box-orient: vertical;
                                      -webkit-box-direction: normal;
                                      -ms-flex-direction: column;
                                      flex-direction: column;
                                      height: 100vh;
                                    }

                                    .footer-page-content {
                                      -webkit-box-flex: 1;
                                      -ms-flex: 1 0 auto;
                                      flex: 1 0 auto;
                                    }

                                    footer {
                                      display: -webkit-box;
                                      display: -ms-flexbox;
                                      display: flex;
                                      -ms-flex-negative: 0;
                                      flex-shrink: 0;
                                      height: 4rem;
                                      margin-top: 0;
                                      background: #333;
                                      color: #fff;
                                      text-align: center;
                                      -webkit-box-align: center;
                                      -ms-flex-align: center;
                                      align-items: center;
                                      font-size: 0.8rem;
                                      font-weight: 200;
                                      z-index: 15;
                                      -webkit-box-shadow: 0px -1px 8px rgba(33, 33, 33, 0.8);
                                      box-shadow: 0px -1px 8px rgba(33, 33, 33, 0.8);
                                    }

                                    footer .footer-left-mid {
                                      text-align: right;
                                      border-right: 1px solid #ccc;
                                    }

                                    footer .footer-left-mid p {
                                      line-height: 1.5;
                                      font-size: 0.8rem;
                                      margin: 0;
                                    }

                                    footer .footer-right-mid {
                                      text-align: left;
                                    }

                                    footer .footer-right-mid p {
                                      line-height: 1.5;
                                      font-size: 0.8rem;
                                      margin: 0;
                                    }

                                    footer .footer-right .socials {
                                      display: -webkit-box;
                                      display: -ms-flexbox;
                                      display: flex;
                                      -webkit-box-orient: horizontal;
                                      -webkit-box-direction: normal;
                                      -ms-flex-direction: row;
                                      flex-direction: row;
                                      -webkit-box-align: center;
                                      -ms-flex-align: center;
                                      align-items: center;
                                      -webkit-box-pack: justify;
                                      -ms-flex-pack: justify;
                                      justify-content: space-between;
                                    }

                                    footer .footer-right .socials a i {
                                      color: #eee;
                                      -webkit-transition: all 0.4s;
                                      transition: all 0.4s;
                                    }

                                    footer .footer-right .socials a i:hover {
                                      -webkit-transform: scale(1.3);
                                      transform: scale(1.3);
                                    }

                                    footer .footer-right .socials .git:hover {
                                      color: #c9510c;
                                    }

                                    footer .footer-right .socials .in:hover {
                                      color: #0077B5;
                                    }

                                    footer .footer-right .socials .mail:hover {
                                      color: #FBEBB4;
                                    }

                                    footer .footer-right .socials .twit:hover {
                                      color: #1DA1F2;
                                    }

                                    footer .footer-right a {
                                      padding: 0.5rem;
                                      text-align: center;
                                    }
                                    /* ===================================================
   HOME PAGE
   =================================================== */
                                    /* 
   Overlay (Nav)
   =================================================== */

                                    .nav-elements-bar {
                                      position: fixed;
                                      top: 0;
                                      width: 100vw;
                                      height: 4rem;
                                      z-index: 100;
                                    }
                                    /**** Logo ****/

                                    .nav-elements-bar .logo {
                                      position: absolute;
                                      top: 28px;
                                      right: 28px;
                                      display: none;
                                    }

                                    .nav-elements-bar img.logo {
                                      width: auto;
                                      height: 36px;
                                    }
                                    /**** Nav Toggle Button ****/

                                    .nav-elements-bar button {
                                      position: absolute;
                                      left: 50vw;
                                      -webkit-transform: translateX(-50%);
                                      transform: translateX(-50%);
                                      top: 3.5rem;
                                      text-decoration: none;
                                      border: none;
                                    }
                                    /**** Nav Toggle Burger ****/

                                    .nav-elements-bar .nav-toggle {
                                      width: 2.5rem;
                                      height: 0.3rem;
                                      border: none;
                                      padding: 0;
                                      margin: 0;
                                      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(50%, rgba(51, 51, 51, 1)), to(rgba(51, 51, 51, 1)));
                                      background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(51, 51, 51, 1) 50%, rgba(51, 51, 51, 1) 100%);
                                      z-index: 110;
                                      -webkit-transition: all 0.3s ease-in-out;
                                      transition: all 0.3s ease-in-out;
                                    }

                                    .nav-elements-bar .nav-toggle span {
                                      position: relative;
                                      top: -1em;
                                      left: 0;
                                      height: 2.5rem;
                                      background: transparent;
                                      display: block;
                                      z-index: 110;
                                    }

                                    .nav-elements-bar .nav-toggle:before,
                                    .nav-elements-bar .nav-toggle:after {
                                      content: "";
                                      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(50%, rgba(51, 51, 51, 1)), to(rgba(51, 51, 51, 1)));
                                      background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(51, 51, 51, 1) 50%, rgba(51, 51, 51, 1) 100%);
                                      width: 2.5rem;
                                      height: 0.3rem;
                                      position: absolute;
                                      z-index: 110;
                                    }

                                    .nav-elements-bar .nav-toggle:before {
                                      top: -1em;
                                      left: 0;
                                      -webkit-transition: all 0.5s linear;
                                      transition: all 0.5s linear;
                                    }

                                    .nav-elements-bar .nav-toggle:after {
                                      top: 1em;
                                      left: 0;
                                      -webkit-transition: all 0.5s linear;
                                      transition: all 0.5s linear;
                                    }
                                    /**** Nav Toggle ****/

                                    .nav-elements-bar .nav-toggle.open {
                                      width: 2.5rem;
                                      height: 2.5rem;
                                      border: 0 solid;
                                      border-radius: 100%;
                                      background: rgba(0, 0, 0, 0);
                                    }

                                    .nav-elements-bar .nav-toggle.open:before,
                                    .nav-elements-bar .nav-toggle.open:after {
                                      content: "";
                                      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 1)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(50%, rgba(51, 51, 51, 1)), to(rgba(51, 51, 51, 1)));
                                      background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(51, 51, 51, 1) 50%, rgba(51, 51, 51, 1) 100%);
                                      width: 2.5rem;
                                      height: 0.3rem;
                                      position: absolute;
                                      opacity: 1;
                                    }

                                    .nav-elements-bar .nav-toggle.open:after {
                                      top: 1rem;
                                      left: 0;
                                      -webkit-transform: rotate(45deg);
                                      transform: rotate(45deg);
                                    }

                                    .nav-elements-bar .nav-toggle.open:before {
                                      top: 1rem;
                                      left: 0;
                                      -webkit-transform: rotate(-45deg);
                                      transform: rotate(-45deg);
                                    }

                                    #trigger-overlay span {
                                      color: transparent;
                                    }
                                    /**** Overlay style ****/

                                    .overlay {
                                      position: fixed;
                                      width: 100%;
                                      height: 100%;
                                      top: 0;
                                      left: 0;
                                      z-index: 90;
                                      background: rgba(34, 132, 255, 0.9);
                                    }
                                    /**** Overlay closing cross ****/
                                    /*need to keep this element in for JS scripts to work */

                                    .overlay .overlay-close {
                                      opacity: 0;
                                    }
                                    /**** Menu style ****/

                                    .overlay nav {
                                      position: relative;
                                      top: 2rem;
                                      width: 100vw;
                                    }

                                    .overlay ul {
                                      display: -webkit-box;
                                      display: -ms-flexbox;
                                      display: flex;
                                      -webkit-box-pack: justify;
                                      -ms-flex-pack: justify;
                                      justify-content: space-around;
                                      list-style: none;
                                      padding: 0;
                                    }

                                    .overlay ul li {
                                      display: inline-block;
                                      padding: 0 2rem;
                                      font-size: 2.2rem;
                                      font-weight: 200;
                                    }

                                    .overlay ul li:nth-child(-n+2) a {
                                      color: #fff;
                                    }

                                    .overlay ul li:nth-child(-n+2) a:hover {
                                      color: #333;
                                    }

                                    .overlay ul li:nth-child(n+3) a {
                                      color: #333;
                                    }

                                    .overlay ul li:nth-child(n+3) a:hover {
                                      color: #fff;
                                    }

                                    overlay ul:after {
                                      content: '';
                                      width: 100%;
                                      /* Ensures justification for single lines */
                                      display: inline-block;
                                    }

                                    .overlay ul li a {
                                      display: inline-block;
                                      -webkit-transition: color 0.3s;
                                      transition: color 0.3s;
                                    }

                                    .overlay ul li a:hover,
                                    .overlay ul li a:focus {
                                      text-decoration: none;
                                    }
                                    /**** Effects ****/

                                    .overlay-hugeinc {
                                      opacity: 0;
                                      visibility: hidden;
                                      -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
                                      transition: opacity 0.5s, visibility 0s 0.5s;
                                    }

                                    .overlay-hugeinc.open {
                                      opacity: 1;
                                      visibility: visible;
                                      -webkit-transition: opacity 0.5s;
                                      transition: opacity 0.5s;
                                    }

                                    .overlay-hugeinc nav ul {
                                      opacity: 0.4;
                                      -webkit-transform: translateY(-200px);
                                      transform: translateY(-200px);
                                      -webkit-transition: -webkit-transform 0.7s, opacity 0.7s ease-out;
                                      -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s;
                                      transition: opacity 0.7s ease-out, -webkit-transform 0.7s;
                                      transition: transform 0.7s, opacity 0.7s ease-out;
                                      transition: transform 0.7s, opacity 0.7s ease-out, -webkit-transform 0.7s;
                                    }

                                    .overlay-hugeinc.open nav ul {
                                      opacity: 1;
                                      -webkit-transform: rotateX(0deg);
                                      transform: rotateX(0deg);
                                    }

                                    .overlay-hugeinc.close nav ul {
                                      -webkit-transform: translateY(-200px);
                                      transform: translateY(-200px);
                                    }
                                    /* Page Wrapper===================================================*/

                                    .page-wrapper {
                                      width: 100vw;
                                      height: 100vh;
                                      padding: 0;
                                    }
                                    /**** Left Hand Side ****/

                                    .page-wrapper-left-top {
                                      position: relative;
                                      height: 100vh;
                                      background: url(//stephy.mccdgm.net/images/patterns/gray_sand.png);
                                      color: #fff;
                                      box-shadow: inset 0 0 100px 50px rgba(0, 0, 0, 0.85);
                                      -moz-box-shadow: inset 0 0 50px 0 rgba(0, 0, 0, 0.85);
                                      -webkit-box-shadow: inset 0 0 50px 0 rgba(0, 0, 0, 0.85);
                                    }

                                    .inner-left {
                                      width: 100%;
                                      height: 100%;
                                      padding: 0;
                                      margin: 0;
                                      /*border:2px solid #AAA;*/
                                    }

                                    .title-text {
                                      position: absolute;
                                      top: 0;
                                      right: 0;
                                      width: 100%;
                                      height: inherit;
                                      display: table;
                                      margin: 0 auto;
                                      padding-right: 1.5rem;
                                      /*border:solid 2px #AA0;*/
                                    }

                                    .title-text #creatorD {
                                      -webkit-transition: color 0.6s ease-in-out;
                                      transition: color 0.6s ease-in-out;
                                    }

                                    .title-text h1 {
                                      display: table-cell;
                                      text-align: right;
                                      vertical-align: middle;
                                      font-size: 4rem;
                                    }
                                    /**** Right Hand Side ****/

                                    .page-wrapper-right-bot {
                                      position: relative;
                                      height: 100vh;
                                    }

                                    .inner-right {
                                      width: 100%;
                                      height: 100%;
                                      padding: 0;
                                      margin: 0;
                                      /*border:4px solid #888;*/
                                    }

                                    .spin-text-content {
                                      position: absolute;
                                      top: 50%;
                                      left: 50%;
                                      -webkit-transform: translate(-50%, -50%);
                                      transform: translate(-50%, -50%);
                                      width: 100%;
                                      height: auto;
                                      overflow: hidden;
                                      /*border:2px solid #A00;*/
                                    }

                                    .spin-text-content-container {
                                      position: relative;
                                      height: 8rem;
                                      padding: 0 0;
                                      margin: 0;
                                      /*border:3px solid #0A0;*/
                                    }

                                    .spin-text-list {
                                      position: absolute;
                                      display: block;
                                      top: 0;
                                      left: 2.5rem;
                                      width: 100%;
                                      list-style-type: none;
                                      padding-left: 1.5rem;
                                      color: #333;
                                      -webkit-animation-name: change;
                                      -webkit-animation-duration: 8s;
                                      -webkit-animation-iteration-count: infinite;
                                      animation-name: change;
                                      animation-duration: 8s;
                                      animation-iteration-count: infinite;
                                      /*border:solid 2px #0AA;*/
                                    }

                                    .spin-text-list.paused {
                                      animation-play-state: paused;
                                      -webkit-animation-play-state: paused;
                                    }

                                    .spin-text-list li {
                                      display: table;
                                      padding-top: 0;
                                    }

                                    .spin-text-list li h2 {
                                      display: table-cell;
                                      vertical-align: middle;
                                      line-height: 2.6;
                                    }

                                    .spin-text-list-item a {
                                      text-decoration: none;
                                      color: inherit;
                                    }
                                    /**** Color Dropdowns ****/
                                    /** :before params **/

                                    .spin-text-list-item:before {
                                      content: "";
                                      position: absolute;
                                      margin-top: 4.2rem;
                                      margin-left: 1.9rem;
                                      width: 0;
                                      height: 3.5rem;
                                      z-index: -10;
                                      opacity: 0.7;
                                      -webkit-transition: all 0.6s ease-in-out;
                                      transition: all 0.6s ease-in-out;
                                    }

                                    .spin-text-list-item:nth-of-type(1):before {
                                      background: skyblue;
                                    }

                                    .spin-text-list-item:nth-of-type(2):before {
                                      background: limegreen;
                                    }

                                    .spin-text-list-item:nth-of-type(3):before {
                                      background: darkorange;
                                    }

                                    .spin-text-list-item#list-code:hover:before {
                                      width: 31.5rem;
                                    }

                                    .spin-text-list-item#list-music:hover:before {
                                      width: 26rem;
                                    }

                                    .spin-text-list-item#list-create:hover:before {
                                      width: 21rem;
                                    }
                                    /** :after params **/

                                    .spin-text-list-item#list-music:after,
                                    .spin-text-list-item#list-code:after,
                                    .spin-text-list-item#list-create:after {
                                      content: "";
                                      position: absolute;
                                      margin-top: 5rem;
                                      margin-left: 0.2rem;
                                      z-index: -10;
                                      opacity: 0;
                                      font-size: 1.4rem;
                                      color: #727272;
                                      -webkit-transition: all 600ms;
                                      transition: all 600ms;
                                    }

                                    .spin-text-list-item#list-music:hover:after {
                                      content: "Click to listen";
                                      opacity: 1;
                                    }

                                    .spin-text-list-item#list-code:hover:after {
                                      content: "Click to inspect";
                                      opacity: 1;
                                    }

                                    .spin-text-list-item#list-create:hover:after {
                                      content: "Click to explore";
                                      opacity: 1;
                                    }
                                    /**** Spinning Text Keyframes *****/
                                    /** 
* The math to figure out the keyframe percentages to change speed etc:
*
* 4 is the number of animation.
* Here, there are 3 lines :
*
* 1 to 2
* 2 to 3
* 3 to 2
* 2 to 1
*
* 4x + 4y = 100 (100% duration)
*
* Here: 
* y = ? -> Animation between two lines
* x = ? -> Time spent on a line
*
* You can define a value and calculate the other if you want change 
* speed or the number of lines
**/
                                    /* @-webkit-keyframes change {
  0%,
  21%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  25%,
  46% {
    -webkit-transform: translate3d(0, -33%, 0);
    transform: translate3d(0, -33%, 0);
  }
  50%,
  71% {
    -webkit-transform: translate3d(0, -66%, 0);
    transform: translate3d(0, -66%, 0);
  }
  75%,
  92% {
    -webkit-transform: translate3d(0, -33%, 0);
    transform: translate3d(0, -33%, 0);
  }
} */

                                    @keyframes change {
                                      0%,
                                      21%,
                                      100% {
                                        -webkit-transform: translate3d(0, 0, 0);
                                        transform: translate3d(0, 0, 0);
                                      }
                                      25%,
                                      46% {
                                        -webkit-transform: translate3d(0, -33%, 0);
                                        transform: translate3d(0, -33%, 0);
                                      }
                                      50%,
                                      71% {
                                        -webkit-transform: translate3d(0, -66%, 0);
                                        transform: translate3d(0, -66%, 0);
                                      }
                                      75%,
                                      92% {
                                        -webkit-transform: translate3d(0, -33%, 0);
                                        transform: translate3d(0, -33%, 0);
                                      }
                                    }
                                    /**** Subtitles ****/

                                    #list-subtitle {
                                      position: absolute;
                                      left: 50%;
                                      width: 45%;
                                      font-size: 2rem;
                                      font-weight: 200;
                                      line-height: 1.3;
                                      color: #333;
                                      margin-left: 2.5rem;
                                      padding: 1.5rem;
                                      /*border:2px solid #A00;*/
                                    }
                                    /**** Media Players ****/

                                    #media-container {
                                      position: absolute;
                                      top: 0;
                                      left: 0;
                                      width: 50vw;
                                      height: 100vh;
                                    }
                                    /** YouTube **/

                                    .video-player-wrapper {
                                      position: relative;
                                      bottom: 0;
                                      padding-bottom: 0;
                                      /* For the 16:9 aspect ratio */
                                      padding-top: 56.25%;
                                      height: 40%;
                                      display: none;
                                      animation: slide-out 1s ease-out;
                                      -webkit-animation: slide-out 1s ease-out;
                                      -moz-animation: slide-in 1s ease-out;
                                    }

                                    .video-player-wrapper.open {
                                      display: block;
                                      animation: slide-in 1s ease-out;
                                      -webkit-animation: slide-in 1s ease-out;
                                      -moz-animation: slide-in 1s ease-out;
                                    }

                                    .video-player-wrapper iframe {
                                      position: absolute;
                                      bottom: 0;
                                      left: 0;
                                      width: 100%;
                                      height: 90%;
                                    }

                                    @keyframes slide-out {
                                      0% {
                                        -webkit-transform: translateX(0);
                                      }
                                      100% {
                                        -webkit-transform: translateY(-400px);
                                      }
                                    }

                                    @-webkit-keyframes slide-out {
                                      0% {
                                        -webkit-transform: translateX(0);
                                      }
                                      100% {
                                        -webkit-transform: translateY(-400px);
                                      }
                                    }

                                    @keyframes slide-in {
                                      0% {
                                        -webkit-transform: translateX(-400px);
                                      }
                                      100% {
                                        -webkit-transform: translateY(0);
                                      }
                                    }

                                    @-webkit-keyframes slide-in {
                                      0% {
                                        -webkit-transform: translateX(-400px);
                                      }
                                      100% {
                                        -webkit-transform: translateY(0);
                                      }
                                    }
                                    /** SoundCloud **/

                                    .audio-player-container {
                                      z-index: 20;
                                    }

                                    .audio-player-wrapper-home {
                                      position: absolute;
                                      bottom: 0;
                                      height: 40%;
                                      width: 100%;
                                      opacity: 0;
                                      display: none;
                                      animation: slide-down 1s ease-out;
                                      -webkit-animation: slide-down 1s ease-out;
                                      -moz-animation: slide-down 1s ease-out;
                                    }

                                    .audio-player-wrapper-home.open {
                                      display: block;
                                      opacity: 1;
                                      animation: slide-up 1s ease-out;
                                      -webkit-animation: slide-up 1s ease-out;
                                      -moz-animation: slide-up 1s ease-out;
                                    }

                                    .audio-player-wrapper-home iframe {
                                      position: absolute;
                                      bottom: 0;
                                      left: 0;
                                      width: 100%;
                                      height: 90%;
                                    }

                                    @keyframes slide-down {
                                      0% {
                                        -webkit-transform: translateX(0);
                                        transform: translateX(0);
                                      }
                                      100% {
                                        -webkit-transform: translateY(50vw);
                                        transform: translateY(50vw);
                                      }
                                    }

                                    @-webkit-keyframes slide-down {
                                      0% {
                                        -webkit-transform: translateX(0);
                                      }
                                      100% {
                                        -webkit-transform: translateY(50vw);
                                      }
                                    }

                                    @keyframes slide-up {
                                      0% {
                                        -webkit-transform: translateX(50vw);
                                        transform: translateX(50vw);
                                      }
                                      100% {
                                        -webkit-transform: translateY(0);
                                        transform: translateY(0);
                                      }
                                    }

                                    @-webkit-keyframes slide-up {
                                      0% {
                                        -webkit-transform: translateX(50vw);
                                      }
                                      100% {
                                        -webkit-transform: translateY(0);
                                      }
                                    }
                                    /* 
   Source Code
   =================================================== */

                                    #source-container {
                                      position: absolute;
                                      top: 0;
                                      left: 0;
                                      width: 50vw;
                                      height: 100vh;
                                    }

                                    #source-code {
                                      display: none;
                                      position: absolute;
                                      top: 0;
                                      left: 0;
                                      width: 100%;
                                      height: 100%;
                                      background: transparent;
                                      z-index: 80;
                                      animation: slide-out 1s ease-out;
                                      -webkit-animation: slide-out 1s ease-out;
                                      -moz-animation: slide-in 1s ease-out;
                                    }

                                    @keyframes slide-out {
                                      0% {
                                        -webkit-transform: translateX(0);
                                      }
                                      100% {
                                        -webkit-transform: translateX(-800px);
                                      }
                                    }

                                    @-webkit-keyframes slide-out {
                                      0% {
                                        -webkit-transform: translateX(0);
                                      }
                                      100% {
                                        -webkit-transform: translateX(-800px);
                                      }
                                    }

                                    #source-code.open {
                                      display: inline-block;
                                      animation: slide-in 1s ease-out;
                                      -webkit-animation: slide-in 1s ease-out;
                                      -moz-animation: slide-in 1s ease-out;
                                    }

                                    @keyframes slide-in {
                                      0% {
                                        -webkit-transform: translateX(-800px);
                                      }
                                      100% {
                                        -webkit-transform: translateY(0);
                                      }
                                    }

                                    @-webkit-keyframes slide-in {
                                      0% {
                                        -webkit-transform: translateX(-800px);
                                      }
                                      100% {
                                        -webkit-transform: translateY(0);
                                      }
                                    }

                                    #source-code pre {
                                      padding: 2em;
                                      font: Monaco, Courier, MonoSpace;
                                      margin: 0 auto;
                                      background: transparent;
                                      color: white;
                                      width: 100%;
                                      height: 100%;
                                      overflow: hidden;
                                      overflow-wrap: break-word;
                                    }

                                    #source-code pre a,
                                    #source-code pre a span {
                                      text-decoration: none;
                                      color: #00ccff !important;
                                      /* Overwrites css style in source-code stylesheet*/
                                    }
                                    /* 
   Create Section
   =================================================== */

                                    #create-container {
                                      position: absolute;
                                      top: 0;
                                      left: 0;
                                      width: 50vw;
                                      height: 100vh;
                                      z-index: 80;
                                    }

                                    .create-content-container {
                                      position: absolute;
                                      display: none;
                                      width: 100%;
                                      height: 100%;
                                      z-index: 80;
                                      background: url("../img/Vintage-paper5.jpg") left center repeat;
                                      background-size: cover;
                                      animation: slide-out 1s ease-out;
                                      -webkit-animation: slide-out 1s ease-out;
                                      -moz-animation: slide-in 1s ease-out;
                                    }

                                    .create-content-container.open {
                                      display: block;
                                      animation: slide-in 1s ease-out;
                                      -webkit-animation: slide-in 1s ease-out;
                                      -moz-animation: slide-in 1s ease-out;
                                    }

                                    @keyframes slide-out {
                                      0% {
                                        -webkit-transform: translateX(0);
                                      }
                                      100% {
                                        -webkit-transform: translateY(-400px);
                                      }
                                    }

                                    @-webkit-keyframes slide-out {
                                      0% {
                                        -webkit-transform: translateX(0);
                                      }
                                      100% {
                                        -webkit-transform: translateY(-400px);
                                      }
                                    }

                                    @keyframes slide-in {
                                      0% {
                                        -webkit-transform: translateX(-400px);
                                      }
                                      100% {
                                        -webkit-transform: translateY(0);
                                      }
                                    }

                                    @-webkit-keyframes slide-in {
                                      0% {
                                        -webkit-transform: translateX(-400px);
                                      }
                                      100% {
                                        -webkit-transform: translateY(0);
                                      }
                                    }

                                    .create-page-mid {
                                      top: 5%;
                                      color: #333;
                                    }

                                    .create-page-mid h4 {
                                      font-variant: small-caps;
                                      text-align: center;
                                    }

                                    .create-page-mid h4:nth-child(n+2) {
                                      padding-top: 2rem;
                                    }

                                    .create-page-mid p::first-letter {
                                      color: darkorange;
                                      font-size: 1.1em;
                                      font-weight: 600;
                                    }

                                    .pseudo-hr {
                                      text-align: center;
                                      position: relative;
                                      font-size: 1.4rem;
                                      margin-bottom: 2rem;
                                    }

                                    .pseudo-hr:before,
                                    .pseudo-hr:after {
                                      content: "";
                                      position: absolute;
                                      display: block;
                                      top: 0.3em;
                                      width: 35%;
                                      height: 0.10em;
                                      background: #555;
                                    }

                                    .pseudo-hr:before {
                                      left: 0;
                                    }

                                    .pseudo-hr:after {
                                      right: 0;
                                    }
                                    /**** Media Toggle Button ****/

                                    #close-media,
                                    #close-source,
                                    #close-create {
                                      position: absolute;
                                      bottom: calc(50% - 1.1rem);
                                      right: -8rem;
                                      opacity: 0;
                                      font-size: 0;
                                      z-index: -100;
                                      -webkit-box-sizing: content-box;
                                      box-sizing: content-box;
                                      border: 0 solid #fff;
                                      -webkit-transition: right 1s ease-in-out, opacity 1s ease-in-out, width 1s ease-in-out;
                                      transition: right 1s ease-in-out, opacity 1s ease-in-out, width 1s ease-in-out;
                                    }

                                    #close-media.open,
                                    #close-source.open,
                                    #close-create.open {
                                      bottom: calc(50% - 1.1rem);
                                      right: -3.1rem;
                                      width: 2rem;
                                      height: 2rem;
                                      background: #fff;
                                      border: 1px solid #333;
                                      border-radius: 0;
                                      font-size: inherit;
                                      -webkit-transform: translateX(-50%);
                                      transform: translateX(-50%);
                                      opacity: 1;
                                      z-index: 80;
                                    }

                                    #close-media.open:hover,
                                    #close-source.open:hover,
                                    #close-create.open:hover {
                                      cursor: pointer;
                                      -webkit-box-shadow: -1px 0 1px rgba(66, 66, 66, 0.7);
                                      box-shadow: -1px 0 1px rgba(66, 66, 66, 0.7);
                                    }

                                    #close-media.open:hover>#close-media.open:after,
                                    #close-source.open:hover>#close-source.open:after,
                                    #close-create.open:hover>#close-create.open:after {
                                      background-color: rgba(34, 132, 255, 1);
                                      height: 3px;
                                    }

                                    #close-media.open p,
                                    #close-source.open p,
                                    #close-create.open p {
                                      position: absolute;
                                      top: 0;
                                      left: 0;
                                      height: 100%;
                                      width: 0;
                                      padding: 0;
                                      text-align: center;
                                      color: #333;
                                      font-size: 0;
                                      background: #fff;
                                      text-shadow: 1px 1px 1px rgba(55, 55, 55, 0.5);
                                      -webkit-box-shadow: -1px 1px 1px rgba(55, 55, 55, 0.5);
                                      box-shadow: -1px 1px 1px rgba(55, 55, 55, 0.5);
                                      border: 0 solid #fff;
                                      -webkit-box-sizing: border-box;
                                      box-sizing: border-box;
                                      -webkit-transition: all 0.6s ease-in-out;
                                      transition: all 0.6s ease-in-out;
                                      z-index: 110;
                                    }

                                    #close-media.open:hover>p,
                                    #close-source.open:hover>p,
                                    #close-create.open:hover>p {
                                      left: -3.7rem;
                                      width: 3.7rem;
                                      padding: 0.2em;
                                      border: 1px solid #333;
                                      font-size: inherit;
                                    }

                                    #close-media.open:before,
                                    #close-media.open:after,
                                    #close-source.open:before,
                                    #close-source.open:after,
                                    #close-create.open:before,
                                    #close-create.open:after {
                                      content: "";
                                      position: absolute;
                                      bottom: 50%;
                                      left: 0;
                                      width: 2rem;
                                      height: 1px;
                                      padding: 0;
                                      margin: 0;
                                      background-color: #333;
                                    }

                                    #close-media.open:before,
                                    #close-source.open:before,
                                    #close-create.open:before {
                                      -webkit-transform: rotate(45deg);
                                      transform: rotate(45deg);
                                    }

                                    #close-media.open:after,
                                    #close-source.open:after,
                                    #close-create.open:after {
                                      -webkit-transform: rotate(-45deg);
                                      transform: rotate(-45deg);
                                    }
                                    /* ===================================================
   CODE PAGE
   =================================================== */
                                    /* 
   Page Content
   =================================================== */

                                    section.projects {
                                      position: relative;
                                      display: block;
                                      background: #fff;
                                      width: 100%;
                                      height: auto;
                                      padding: 0 2rem;
                                      z-index: 15;
                                    }

                                    section.projects .subhead {
                                      position: relative;
                                      display: inline-block;
                                      width: 100%;
                                      text-align: center;
                                      margin: 0 auto;
                                      text-transform: uppercase;
                                      padding: 4rem;
                                    }

                                    section.projects .subhead h2 {
                                      display: block;
                                    }

                                    section.projects .subhead h2:before,
                                    .subhead h2:after {
                                      content: "";
                                      display: block;
                                      position: absolute;
                                      top: 55%;
                                      width: calc(35vw - 3em);
                                      margin: 0 3rem;
                                      height: 4px;
                                      background-color: #333;
                                    }

                                    section.projects .subhead h2:before {
                                      left: 0;
                                    }

                                    section.projects .subhead h2:after {
                                      right: 0;
                                    }

                                    .projects .projects-body {
                                      margin-bottom: 2rem;
                                    }

                                    section.projects .code-project-twnaf,
                                    .code-project-perizia {
                                      padding: 0 2rem;
                                    }

                                    section.projects .project-title {
                                      margin: 0 auto;
                                      padding: 0 2rem;
                                      text-align: center;
                                    }

                                    section.projects .project-title a {
                                      text-decoration: none;
                                      color: inherit;
                                      border-bottom: 1px solid transparent;
                                      background: #fff;
                                      padding: 0.1rem;
                                      -webkit-transition: all 0.4s;
                                      transition: all 0.4s;
                                    }

                                    section.projects .project-title a:hover {
                                      border-bottom: 1px solid #4093fb;
                                      color: #fff;
                                      background: #000;
                                    }

                                    section.projects .project-intro {
                                      width: 100%;
                                      height: 7rem;
                                      margin: 0 auto;
                                      padding: 0.5rem 2rem;
                                      text-align: justify;
                                    }

                                    section.projects .project-iframe {
                                      position: relative;
                                      height: 0;
                                      padding-bottom: 56.25%;
                                      display: block;
                                      width: 100%;
                                      overflow: auto;
                                      margin: 0 auto;
                                    }

                                    section.projects .project-iframe iframe {
                                      position: absolute;
                                      top: 0;
                                      left: 0;
                                      width: 100%;
                                      height: 100%;
                                      padding: 0.5rem;
                                      border: #999 2px groove;
                                    }
                                    /* ===================================================
   MUSIC PAGE
   =================================================== */

                                    .projects-music {
                                      height: calc(100vh - 3rem);
                                    }

                                    .music-box-audio-wrapper {
                                      position: relative;
                                      bottom: 0;
                                      display: block;
                                      /* For the 16:9 aspect ratio */
                                      padding: 6%;
                                      height: 0;
                                    }

                                    .music-box-info-vim,
                                    .music-box-info-you {
                                      position: absolute;
                                      margin: 0 auto;
                                      background: rgba(66, 66, 66, 0.5);
                                      color: #fff;
                                      padding: 0 1rem;
                                      max-width: 83%;
                                    }

                                    .music-box-info-vim {
                                      top: 50%;
                                      left: 2.45rem
                                    }

                                    .music-box-info-you {
                                      top: 50%;
                                      left: 1rem
                                    }

                                    .music-box-info-vim p,
                                    .music-box-info-you p {
                                      font-weight: 200;
                                      opacity: 0;
                                      display: none
                                    }

                                    .music-box-audio-wrapper iframe {
                                      position: absolute;
                                      bottom: 0;
                                      left: 0;
                                      width: 100%;
                                      height: auto;
                                      padding: 1rem;
                                    }

                                    .music-box-video-wrapper {
                                      position: relative;
                                      bottom: 0;
                                      display: block;
                                      /* For the 16:9 aspect ratio */
                                      padding: 10%;
                                      height: 0;
                                    }

                                    .music-box-video-wrapper iframe {
                                      position: absolute;
                                      bottom: 0;
                                      left: 0;
                                      width: 100%;
                                      height: 90%;
                                      padding: 1rem;
                                    }
                                    /* 
   Page Content
   =================================================== */
                                    /* ===================================================
   CONNECT PAGE
   =================================================== */
                                    /* 
   Header and Nav
   =================================================== */

                                    .header-connect {
                                      height: 4rem;
                                    }

                                    .nav-container-connect {
                                      position: fixed;
                                      margin: 0 auto;
                                      top: 0;
                                      left: 0;
                                      width: 100%;
                                      height: 4rem;
                                      background: #333;
                                      text-align: center;
                                      -webkit-box-shadow: 0 2px 8px rgba(33, 33, 33, 0.6);
                                      box-shadow: 0 2px 8px rgba(33, 33, 33, 0.6);
                                      z-index: 1000;
                                    }

                                    .nav-container-connect nav {
                                      position: relative;
                                      margin: 0 auto;
                                      height: inherit;
                                      opacity: 1;
                                      z-index: 100;
                                      background: #333;
                                      -webkit-transition: opacity 1s;
                                      transition: opacity 1s;
                                    }

                                    .nav-container-connect .title {
                                      -webkit-box-shadow: none;
                                      box-shadow: none;
                                    }

                                    .nav-container-connect .logo {
                                      opacity: 1;
                                    }
                                    /* 
   Page Content
   =================================================== */

                                    .connect-row {
                                      display: flex;
                                      text-align: center;
                                    }

                                    .connect-content {
                                      display: -webkit-box;
                                      display: -ms-flexbox;
                                      display: flex;
                                      flex-direction: column;
                                      -ms-flex-line-pack: center;
                                      align-items: center;
                                      -webkit-box-pack: center;
                                      -ms-flex-pack: center;
                                    }

                                    .connect-content h2 {
                                      text-decoration: underline;
                                      padding-bottom: 1.5rem;
                                    }

                                    .connect-content p {
                                      text-align: justify;
                                      padding: 1rem 2rem;
                                    }

                                    .connect-content li {
                                      text-align: left;
                                    }

                                    .connect-content img {
                                      width: 50%;
                                      height: auto;
                                    }

                                    .connect-content-about {
                                      background: #fff;
                                    }

                                    .connect-content-contact {
                                      background: #eee;
                                    }

                                    .connect-content-clients {
                                      background: #fff;
                                    }
                                    /* ===================================================
   MEDIA QUERIES
   =================================================== */
                                    /* 
   Global
   =================================================== */
                                    /* 
   Home
   =================================================== */

                                    @media screen and (max-width: 767px) {
                                      /* Overlay Menu */
                                      .overlay nav {
                                        top: 45vh;
                                      }
                                      .overlay ul {
                                        justify-content: space-evenly;
                                      }
                                      .overlay ul li {
                                        padding: 0;
                                        font-size: 2rem;
                                      }
                                      .overlay ul li:nth-child(n+3) a {
                                        color: #fff;
                                      }
                                      /* LHS/TOP */
                                      .page-wrapper-left-top {
                                        height: 50vh;
                                        box-shadow: none;
                                      }
                                      .inner-left {
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                      }
                                      .title-text {
                                        position: relative;
                                        width: auto;
                                      }
                                      .title-text h1 {
                                        text-align: center;
                                      }
                                      /* RHS/BOT */
                                      .page-wrapper-right-bot {
                                        height: 50vh;
                                      }
                                      .spin-text-list {
                                        display: flex;
                                        flex-direction: column;
                                        align-items: center;
                                        left: 0;
                                        padding: 0;
                                      }
                                      #create-container,
                                      #source-container,
                                      #media-container {
                                        height: auto;
                                      }
                                      /* LHS POPOUTS */
                                      #media-container,
                                      #source-container,
                                      #create-container {
                                        display: none;
                                      }
                                      /* CLOSE MEDIA BUTTON */
                                      close-media.open,
                                      #close-source.open,
                                      #close-create.open {
                                        bottom: -65vh;
                                      }
                                      .nav-elements-bar .nav-toggle,
                                      .nav-elements-bar .nav-toggle:before,
                                      .nav-elements-bar .nav-toggle:after,
                                      .nav-elements-bar .nav-toggle.open:before,
                                      .nav-elements-bar .nav-toggle.open:after {
                                        background: #fff;
                                      }
                                      .nav-links ul {
                                        justify-content: flex-end;
                                      }
                                    }

                                    @media screen and (max-width: 414px) {
                                      .nav-container nav,
                                      .nav-container-connect nav {
                                        top: 0;
                                        width: 100%;
                                        border-top: #fff 1px solid;
                                      }
                                    }
                                    /* 
   Code
   =================================================== */
                                    /* 
   Create
   =================================================== */
                                    /* 
   Clients
   =================================================== */
                                    /* 
   About
   =================================================== */
                                    /* 
   Contact
   =================================================== */