body {
  overflow-x: hidden;
  overflow-y: hidden;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(292deg, #0b0b09, #282a2d);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

#section-1 {
	background: url('images/hp-bg-me-v1.png') center center no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.introTextFade p {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 5vw;
	text-transform: uppercase;
  color: #fff;
  padding: 5px 0;
  -webkit-animation: introText 7s 1;
  -webkit-animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation: introText 7s 1;
  animation-delay: 1s;
  animation-fill-mode: both;
}

@-webkit-keyframes introText {
  0% {
    opacity: 0;
  }
  37% {
    opacity: .75;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  92% {
    opacity: .75;
  }
  95% {
    opacity: .5;
  }
  98% {
    opacity: .25;
  }
  
  100% {
    opacity: 0;
  }
}

@keyframes introText {
  0% {
    opacity: 0;
  }
  37% {
    opacity: .75;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  92% {
    opacity: .75;
  }
  95% {
    opacity: .5;
  }
  98% {
    opacity: .25;
  }
  
  100% {
    opacity: 0;
  }
}

.hover-link .nav-1 a {
	text-decoration: none;
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 5vw;
	background-color: #000;
	color: transparent;
	text-shadow: 2px 2px 2px rgba(80,82,85,0.3);
  	-webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
	text-transform: uppercase;
	padding: 5px 10px;
}

.hover-link .nav-1 a:hover {
	text-decoration: none;
	background-color: #fff;
	opacity: 0.75;
	color: #fff;
	text-shadow: 0 0 100px ##97999b;
}



#nr-1:hover + .bg-1,#nr-2:hover + .bg-2,#nr-3:hover + .bg-3,#nr-4:hover + .bg-4,#nr-5:hover + .bg-5,#nr-6:hover + .bg-6{
  opacity:8.0;
}


.flexboxcenter {
  display: flex;
}



.hover-link {
  z-index: 100000;
}

.hover-link .nav-1 {
  z-index: 10000;
}

/* Background classes - styling for how background eases in and out  */

.bg-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('images/hp-hero-onbody.jpg') center center no-repeat;
  background-size: 100%;
  height: 125vh;
  width: 100%;
  z-index: -1;
  opacity: 0.0;
  -webkit-transition-property:opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;

}

.bg-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('images/hp-hero-digitaldesign.jpg') center center no-repeat;
  background-size: cover;
  height: 125vh;
  width: 100%;
  z-index: -1;
  opacity: 0.0;
  -webkit-transition-property:opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.bg-3 {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('images/hp-hero-emailmarketing.jpg') center center no-repeat;
  background-size: cover;
	height: 125vh;
	width: 100%;
	z-index: -1;
	opacity: 0.0;
  -webkit-transition-property:opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.bg-4 {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('images/hp-hero-printdesign.jpg') center center no-repeat;
  background-size: cover;
	height: 125vh;
	width: 100%;
	z-index: -1;
	opacity: 0.0;
  -webkit-transition-property:opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.bg-5 {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('images/water.gif') center center no-repeat;
  background-size: cover;
	height: 125vh;
	width: 100%;
	z-index: -1;
	opacity: 0.0;
  -webkit-transition-property:opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.bg-6 {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url('images/hp-hero-softstyle.jpg') center center no-repeat;
  background-size: cover;
  height: 125vh;
  width: 100%;
  z-index: -1;
  opacity: 0.0;
  -webkit-transition-property:opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}


/* Hover effect classes */

.new {
  color: #fff !important;
  opacity: 1 !important;
}

.bla {
  opacity: 0.3;
}



.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #fff;
  height: 10px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* This is for the menu styling and the overlay */



#toggle {
  display: none;
}

/**
 * Hamburger icon
 */
.hamburger {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  z-index: 200000;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-bottom: 100px;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  left: 0;
  transition: 0.25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 12px;
}
.hamburger span:nth-child(4) {
  top: 24px;
}

/**
 * Overlay
 */
.overlay {
  display: block;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/**
 * Nav menu
 */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.8);
  overflow-y: auto;
  padding: 3rem;
  transform: translate3d(calc(-100% - 24px), 0, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
  z-index: 199000;
  pointer-events: none;
}

.nav a {
  width: 46%;
  text-decoration: none;
  text-align: left;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 4vw;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px rgba(80,82,85,0.3);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  display: block;
  padding: 1rem;
}

.nav a:hover {
  text-decoration: none;
  background-color: #fff;
  opacity: 0.75;
  color: #fff;
  text-shadow: 0 0 100px ##97999b;
}

.hvr-underline-from-center-nav {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center-nav:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 75%;
  right: 75%;
  bottom: 0;
  background: #fff;
  height: 10px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center-nav:hover:before, .hvr-underline-from-center-nav:focus:before, .hvr-underline-from-center-nav:active:before {
  left: 0;
  right: 0;
}

/**
 * Open states
 */
#toggle:checked ~ .hamburger span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#toggle:checked ~ .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
#toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
#toggle:checked ~ .hamburger span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

#toggle:checked ~ .nav {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

/* END OF NAV OVERLAY POP UP STYLING */

/* --- media queries - mostly for the text on mobile ---*/

@media screen and (max-width: 475px) {
  .introTextFade p {
    font-size: 7vw !important;
    margin-top: 25%;
  }

  .hover-link .nav-1 a {
    font-size: 7vw;
  }

  .nav a {
    font-size: 7vw;
  }
}

