@import url('https://fonts.googleapis.com/css?family=Montserrat:900|Open+Sans:300,400|Quicksand:300|Roboto');

@import url(aos.css);
@import url(lightbox.css);
/*font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Quicksand', sans-serif;*/


/*colors
#272727;
#3dbfc9;
#05afaa;
*/

html{
 scroll-behavior: smooth;
    box-sizing: border-box;
}

html,body{
    margin: 0;
    padding: 0;
}

.container{
    width: 85%;
    margin: 0 auto;
}

header{
	padding-top: 2%;
	text-align: center;
}

nav {
  min-height: 10vh;
  background-color: #05afaa;
	padding: 1% 0;
	position: fixed;
	width: 100%;
	z-index: 3;
}

#home-nav{
	display: none;
}

.nav-link {
width: 90%;
	text-align: right;
	padding-top: 16px;
}


.nav-link li {
  list-style-type: none;
cursor: pointer;
padding: 0 4%;
	display: inline-block;
}

.navbar a {
  color:#fff;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight:400;
  font-size: 1.2em;
  font-family: 'Open Sans', sans-serif;


}

.navbar img{
float: left;

}

.navbar a:hover{
	font-weight: bold;
}

.burger {
  display: none;

}
.burger div {
  width: 25px;
  height: 2px;
  margin: 6px;
  background-color: rgb(226, 226, 226);
  transition: all 0.3s ease;
 
}

p{
font-family: 'Roboto', sans-serif;
 font-size: 1em;
}

.hero-banner{
    margin-bottom: 9%;
    
}

.row{
padding-top: 4%;
}

.row > .column {
  padding:  2px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;

}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 12%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 45%;
  max-width: 1200px;

}

/* The Close Button */
.close {
  color: white;
  position: absolute;

  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
 width: 50%;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.mobile-hero-banner{
	background-image: url(../img/hero-banner-tablet.svg);
	height: 700px;
	display: none;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 10%;
	width: 100%;
}

.mobile-text{
	margin: 55% 15% 20% 15%;
	  font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
	color: #272727;
	text-align: center;
}

.tagline{
    text-align: center;
    color: #272727;
}

.tagline h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.tagline h2{
    font-family: 'Quicksand', sans-serif;
}


.hero-text {
    position: relative;
    width: 10%;
    z-index: 1;
    text-align: center;
    margin: 3% 45% 0 45%;
}

.hero-text  h1{
    font-size: 2.5em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin: 10% 0 0 0;
    padding: 1% 0;
    cursor: pointer;
	width: 100%;


}


.projects h3, .services h3{
	    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
	color: #272727;
}

.hero-text a{
    text-decoration: none;
    color: #272727;

}



.link-effect{
    display: inline-block;
    color: #272727;
    text-decoration: none;
}

.nav-link-effect{
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.link-effect::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #272727;
    transition: width .3s;
}

.nav-link-effect::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .3s;
}

.link-effect:hover::after {
    width: 100%;
   
}

.nav-link-effect:hover::after {
    width: 100%;
   
}

.area{
    background: #fff;  
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 100%);
    width: 100%;

    
   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height:950px;
    overflow: hidden
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    animation: animate 25s linear infinite;
    bottom: -150px;
    
    
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    border-radius: 100px;
   background-color: #3dbfc9;
}


.circles li:nth-child(2){
    left: 10%;
   width: 0;
height: 0;
border-style:solid;
border-width: 0 50px 80px 50px;
border-width: 0 50px 80px 50px;
border-color: transparent transparent #3dbfc9 transparent;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
    background-color: #3dbfc9;
}

.circles li:nth-child(4){
    left: 40%;
    width: 0;
height: 0;
border-style: solid;
border-width: 0 50px 80px 50px;
border-color: transparent transparent #3dbfc9 transparent;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    border-radius: 100px;
    background-color:#3dbfc9;
}

.circles li:nth-child(6){
    left: 75%;
   width: 0;
height: 0;
border-style: solid;
border-width: 0 50px 80px 50px;
border-color: transparent transparent #3dbfc9 transparent;
    animation-delay: 3s;
    
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
    background-color: #3dbfc9;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
       border-radius: 100px;
   background-color: #3dbfc9;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
        background-color: #3dbfc9;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
       border-radius: 100px;
   background-color: #3dbfc9;
}



.bottom-hero{
	background-image: url(../img/bottom-hero.svg);
	height: 260px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

section {

  width: 100%;
  height: 100%;
}

section::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 80%;
}




.demo a {
  position: absolute;
  left: 48%;

  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #000;
  font-family: 'Open Sans', sans-serif;
    font-weight: 400;
 font-size: 1.5em;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}
.demo a:hover {
  opacity: .5;
}


#section05 a {
  padding-top: 70px;
}
#section05 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
   
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    
    }

}


.about-section{
	background-image: url(../img/section-image.svg);
	background-repeat: no-repeat;
}

.about{
    padding: 30% 0 5% 0;

}



.info h3{
	text-align: center;
	font-size: 1.5em;
}


.services{
	display: inline-block;
	width:20%;
	padding: 0 2%;
}

.services img{
margin: 0 5%;


}



.about p{
    font-size: 1.2em;
    line-height: 2.3em;
    margin-top: 3%;
    width: 50%;

}

.about h2, .about h3{
    margin: 10px 0;
    font-family: 'Quicksand', sans-serif;
    width: 50%;
  
}

.subhead{
 font-family: 'Quicksand', sans-serif;
	font-weight: 300;
}
.about h2{
    font-size: 2em;
    font-weight: 300;
}


.about img{
float: right;
margin-left: 0%;
margin-top: 0%;
margin-right: 10%;
width: 30%;
}



.projects{
height: 500px;
background-image: url(../img/projects-bg.svg);
	background-size: cover;
	background-position: center;
	margin: 10% 0 5% 0;
	width: 100%;
}




.projects a{
	margin: 10% 35% 0 35%;
	font-size: 1.8em;
    width: 30%;
    text-align: center;
	
}

.contact{
	text-align: center;
	 font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
	padding-bottom: 5%;
  
}

.contact p{
	margin-top: 0;
}

.contact a, .contact h2{
	text-decoration: none;
	color: #272727;
}

.contact h2{
	margin-bottom: 2%;
}



.work{
background-color: #3dbfc9;
	width: 30%;
	margin: 1%;
	padding: 10% 0;
	display: inline-block;
	text-align: center;
	  color:#fff;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight:bold;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
	cursor: pointer;
}


.thumbnails{
	padding-top: 10%;
    padding-bottom: 5%;
}


#starbucks, #all-for-one, #wet-tech, #peru, #mercury, #joe, #ping, #north-star, #tmg{
		background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#starbucks{
	 background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-1.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-1.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-1.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-1.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-1.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-1.png);
}


#starbucks:hover{
	 
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-1.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-1.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-1.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-1.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-1.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-1.png);
}

#all-for-one{
	 background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-2.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-2.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-2.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-2.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-2.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-2.png);
}

#all-for-one:hover{
	
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-2.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-2.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-2.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-2.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-2.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-2.png);

}

#wet-tech{
	 background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-3.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-3.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-3.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-3.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-3.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-3.png);
}

#wet-tech:hover{
	
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-3.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-3.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-3.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-3.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-3.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-3.png);

}

#north-star{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-8.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-8.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-8.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-8.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-8.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-8.png);

}

#north-star:hover{
	
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-8.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-8.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-8.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-8.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-8.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-8.png);

}


#peru{
	 background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-5.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-5.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-5.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-5.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-5.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-5.png);
}

#peru:hover{
	
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-5.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-5.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-5.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-5.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-5.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-5.png);

}

#mercury{
	 background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-4.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-4.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-4.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-4.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-4.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-4.png);
}

#mercury:hover{
	
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-4.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-4.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-4.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-4.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-4.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-4.png);

}

#joe{
	 background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-6.jpg);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-6.jpg);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-6.jpg);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-6.jpg);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-6.jpg);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-6.jpg);
}

#joe:hover{
	
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-6.jpg);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-6.jpg);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-6.jpg);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-6.jpg);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-6.jpg);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-6.jpg);

}


#ping{
	 background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-7.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-7.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-7.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-7.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-7.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-7.png);
}

#ping:hover{
	
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-7.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-7.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-7.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-7.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-7.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-7.png);

}

#tmg{
	 background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-9.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-9.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-9.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-9.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/thumbnail-9.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/thumbnail-9.png);
}

#tmg:hover{
	
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-9.png);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-9.png);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-9.png);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-9.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/thumbnail-9.png);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/thumbnail-9.png);

}

.awards{
	padding: 2% 0;
}

.awards h2{
	   font-family: 'Montserrat', sans-serif;
    font-weight: 100;
	font-size: 2em;
	color: #3dbfc9;
	margin-bottom: 0;
}

.awards h3{
	font-family: 'Quicksand', sans-serif;
	font-size: 1.3em;
	color: #272727;
	font-weight: bold;
}

.awards h4{
	font-weight: 900;
	font-family: 'Roboto', sans-serif;
	color: #272727;
	font-size: 1.5em;
	margin: 0;
}

.awards p{
	font-weight: 800;
	color: #272727;
	font-style: italic;
}

.project-banner{
	padding-top: 15%;
}

.project-banner h2{
    color: white;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-weight: 100;
	font-size: 1.8em;
}

.project-banner p{
	font-size: 1.1em;
    line-height: 2.3em;
    margin: 3% 15% 0 15%;
	font-family: 'Roboto', sans-serif;
	color: white;
	font-weight:600;
   width: 70%;
    text-align: center;

}

.button{
	padding-bottom: 12%;
	text-align: center;

}

.button a{
	margin: 4% 6%;
	text-decoration: none;
	color: white;
	background-color:#3dbfc9;
	font-family: 'Open Sans', sans-serif;
	padding: 2% 3%;
	transition: 0.4s;
	width: 30%;
	float: left;
	font-weight: bold;
	font-size: 1.3em;

}

.button a:hover{
	background-color:#05afaa;
}


.button-single{
	padding-bottom: 12%;
	text-align: center;

}

.button-single a{
	margin: 4% 30%;
	text-decoration: none;
	color: white;
	background-color:#3dbfc9;
	font-family: 'Open Sans', sans-serif;
	padding: 2% 3%;
	transition: 0.4s;
	width: 30%;
	float: left;
	font-weight: bold;
	font-size: 1.3em;

}

.button-single a:hover{
	background-color:#05afaa;
}

.project-detail{
    margin-top: 5%;
   
}

#peru-banner{
    background-color: #05afaa;
    padding-bottom: 10%;
    background-image: url(../img/peru-banner-bg.png);
    background-size: cover;
}

#north-star-banner{
	background-color: #05afaa;
    padding-bottom: 6%;
    background-image: url(../img/north-star-banner-bg.jpg);
    background-size: cover;
}

#all-for-one-banner{
	background-color: #05afaa;
    padding-bottom: 6%;
    background-image: url(../img/all-for-one-banner.png);
    background-size: cover;
	background-position: top;
}

#starbucks-banner{
	background-color: #05afaa;
    padding-bottom: 6%;
    background-image: url(../img/starbucks-banner-bg.png);
    background-size: cover;
	background-position: top;
}

#wet-tech-banner{
	background-color: #05afaa;
    padding-bottom: 6%;
    background-image: url(../img/wet-tech-banner.png);
    background-size: cover;
	background-position: top;
}

#ping-banner{
	background-color: #05afaa;
    padding-bottom: 6%;
    background-image: url(../img/ping-banner.png);
    background-size: cover;
	background-position: top;
}

#tmg-banner{
background-color: #05afaa;
    padding-bottom: 6%;
    background-image: url(../img/teammarketgroup-banner.jpg);
    background-size: cover;
	background-position: center;
}


.north-star-logo{
display: inline-block;
padding-bottom: 5%;
}

.ping-logo{
display: inline-block;
padding-bottom: 5%;
}

.all-for-one-logo{
display: inline-block;
padding-bottom: 5%;
	
}

.wet-tech-logo{
display: inline-block;
padding-bottom: 5%;
	
}

.wet-tech-logo:nth-child(1){
	width: 45%;
}

.wet-tech-logo:nth-child(2){
	width: 45%;
}

.wet-tech-logo:nth-child(3){
	width: 45%;
}

.wet-tech-logo:nth-child(4){
	width: 45%;
}

.wet-tech-logo:nth-child(5){
	width: 45%;
}

.wet-tech-logo:nth-child(6){
	width: 45%;
}

.north-star-logo:nth-child(2){
	padding: 0 4%;
}

.all-for-one-logo{
	padding: 0 3%;
}

.north-star-logo p{
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #272727;
}


.wet-tech-logo p{
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #272727;
}

.all-for-one-logo p{
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #272727;
}

.ping-logo p{
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #272727;
}

.ping-logo img:nth-child(1), .ping-logo img:nth-child(2), .ping-logo img:nth-child(3){
 width: 250px;
  }

.ping-logo:nth-child(2){
    padding: 0 10%;
}


.north-star-logo:nth-child(1), .north-star-logo:nth-child(2), .north-star-logo:nth-child(3){
 width: 350px;
}

.all-for-one-logo:nth-child(1), .all-for-one-logo:nth-child(2), .all-for-one-logo:nth-child(3){
 width: 350px;
}



#poster-peru-1 img{
width: 33%;
}

#poster-peru-2 img{
width: 33%;
}

#poster-peru-3 img{
width: 33%;
}

#peru-book-1 img{
	width: 50%;
}
#peru-book-2 img{
	width: 49.1%;
}

#peru-book-3 img{
	width: 55%;
}

#peru-subway img{
	width: 44%;
}
#peru-postcard-1 img{
	width: 49.6%;
}
#peru-postcard-2 img{
	width: 49.4%;
}







#ping-card img{
	width: 45%;
}
#ping-letterhead img{
	width: 45%;
}
#ping-lanyard img{
	width: 45%;
}
#ping-shirt img{
	width: 45%;
}
#ping-illustration img{
	width: 90%;
}


.wet-tech-details img{
	margin: 3px;
}
.wet-tech-desktop{
	display: block;
}

.wet-tech-tablet{
	display: none;
}

.wet-tech-mobile{
	display: none;
}


#floating-island-icon img{
	width: 32.1%;
	
}
#fog-icon img{
	width: 32.1%;
	
}

#aeriation-icon img{
	width: 32.1%;
	
}


#seattle-art img{
	width: 49.2%;
}
#error-art img{
	width: 49%;
}
#trees-art img{
	width: 49.2%;
}

#cup-art img{
	width: 49%;
}

.project-detail p{
    font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}

.starbucks-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}


.wet-tech-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}

.ping-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}

.aloha-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}

.mathers-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}


.robinson-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}

.tmg-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}

#north-star-stationary img{
	width: 54%;
}
#north-star-business-card img{
	width: 40%;
}
#north-star-letterhead img{
	width: 46.5%;
}

#north-star-folder img{
	width: 47.7%;
}
#north-star-postcard img{
	width: 51.5%;
}
#north-star-lanyarde img{
	width: 42.9%;
}
#north-star-desktop img{
	width: 46.1%;
}
#north-star-email img{
	width: 48.3%;
}
#north-star-signature img{
	width: 41.5%;
}
#north-star-cargo img{
    
	width: 53%;
}


#mathers-window img{
	width: 40%;
}

#mathers-tabletent img{
	width: 40%;
}


#afo-vector-1 img{
	width: 45%;
}

#afo-vector-2 img{
	width: 51%;
}

#afo-vector-3 img{
width: 48%;
}
#afo-vector-4 img{
width: 48%;
}


#tmg-trifold img{
	width: 40%;
}

#tmg-flyer img{
	width:40%;
}



#aloha-tanktop img{
	width: 45%;
}


#aloha-shirt-front img{
	width: 45%;
}

#aloha-shirt-back img{
	width: 30%;
}

#aloha-tanktop-front img{
	width: 30%;
}

#aloha-tanktop-back img{
	width: 30%;
}


#aloha-hat img{
	width:45%;
}

#aloha-glassware img{
	width: 45%;
}


#robinson-membership-1 img{
    width: 31%;
    
}

#robinson-membership-2 img{
    width: 31%;
    
}

#robinson-membership-3 img{
    width: 31%;
    
}
#robinson-wine img{
    width: 30%;
}

#cream-1 img{
    width: 31%;
}

#cream-2 img{
    width: 31%;
}

#fluffy-latte img{
    width: 46.2%;
}

#mimosa img{
    width: 46.2%;
}

.all-for-one-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}

.all-for-one-details p{
	font-family: 'Montserrat', sans-serif;
	color: #272727;
	font-weight: bold;
	font-size: 1.4em;
}
.aloha-beautiful{
    padding-bottom: 5%;
}

.team-market-group{
    padding-bottom: 5%;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  font-family: 'Roboto', sans-serif;
	color: #272727;
	font-weight: bold;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  	color: #272727;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  	color: #272727;
  text-decoration: underline;
}


@media only screen and (max-width: 1600px){
    
    .hero-text {

    width: 15%;
    margin: 3% 43% 0 43%;
}



}

@media only screen and (max-width: 1024px) {
    .hero-text {
  
    width: 20%;

    margin: 3% 42% 0 42%;
}


  .nav-link li {
  
padding: 0 2%;

}

	.work h3{
		width: 50%;
		margin: 0 25%;
		font-size: 1.4em;
}

.circles{
    height:870px;
}


.info h3{
	text-align: center;
	font-size: 1.5em;
	margin: 0 5%;
}


.services{
	display: inline-block;
	width:30%;
	padding: 5% 8%;
}



.about img{
	margin: 15% 0 0 0;
	width: 250px;
}


.about p{
   width: 55%;

}

.about h2, .about h3{
    margin: 10px 0;
    font-family: 'Quicksand', sans-serif;
  
}

.ping-logo img:nth-child(1), .ping-logo img:nth-child(2), .ping-logo img:nth-child(3){
 width: 150px;
  }

.ping-logo:nth-child(2){
    padding: 0 7%;
}


}


@media only screen and (max-width: 807px){

.button a{
	margin: 10% 20%;
	text-decoration: none;
	color: white;
	background-color:#3dbfc9;
	font-family: 'Open Sans', sans-serif;
	padding: 3% 10%;
	transition: 0.4s;
	width: 40%;
	float: left;

}

.button-single a{
	margin: 10% 20%;
	text-decoration: none;
	color: white;
	background-color:#3dbfc9;
	font-family: 'Open Sans', sans-serif;
	padding: 3% 10%;
	transition: 0.4s;
	width: 40%;
	float: left;

}

}

@media only screen and (max-width: 768px) {

	.thumbnails h2:nth-child(odd){
		padding-top: 10%;
}

	.work{
		width: 50%;
		margin: 2% 0;
		padding: 9% 20%;
}
	.contact{
		padding:5% 0 10% 0;
}

.work{
  font-size: 14px;
 
}

 .services h3{
	    font-size: 1em;
}

	.info img{
		width: 200px;
}

	#home-nav{
		display: block;
}

	.demo{
display: none;
}

	header{
		display: none;
}


	.mobile-hero-banner{
		display: block;
}


.tmg-details img:nth-child(3){
	width: 80%;
}

.tmg-details img:nth-child(2){
	width:80%;
}

.mathers-details img:nth-child(3){
	width: 80%;
}

.mathers-details img:nth-child(2){
	width:80%;
}

.robinson-details img:nth-child(2){
    width: 42%;
    
}

.robinson-details img:nth-child(3){
    width: 42%;
    
}

.robinson-details img:nth-child(4){
    width: 42%;
    
}
.robinson-details img:nth-child(5){
    width: 42%;
}

.robinson-details img:nth-child(6){
    width: 42%;
}

.robinson-details img:nth-child(7){
    width: 42%;
}

.robinson-details img:nth-child(8){
    width: 80%;
}

.robinson-details img:nth-child(9){
    width: 80%;
}

.aloha-details img:nth-child(1){
	width: 45%;
}

.aloha-details img:nth-child(2){
	width:80%;
}


.aloha-details img:nth-child(3){
	width: 80%;
}

.aloha-details img:nth-child(4){
	width: 40%;
}

.aloha-details img:nth-child(5){
	width: 40%;
}

.aloha-details img:nth-child(6){
	width: 40%;
}


.aloha-details img:nth-child(7){
	width: 40%;
}

.aloha-details img:nth-child(8){
	width: 80%;
}


#poster-peru-1 img{
width: 32%;
}

#poster-peru-2 img{
width: 32%;
}

#poster-peru-3 img{
width: 32%;
}

#peru-book-1 img{
	width: 98%;
}
#peru-book-2 img{
	width: 49%;
}

#peru-book-3 img{
	width: 49%;
}

#peru-subway img{
	width: 98%;
}
#peru-postcard-1 img{
	width: 48.8%;
}
#peru-postcard-2 img{
	width: 48.8%;
}




	
	.navbar img{
float:left;

}

	.burger{
		float: right;
		padding-top: 4%;
}

	body {
    overflow-x: hidden;
  }


	.area{
		display: none;
}
	section{
		display: none;
}


	.hero-text{

   		margin: 15% 30% 0 30%;
 
}

	.hero-image{
		 display: none;

}

.about-section{
	background: none;

}

.bottom-hero{
	display: none;
}


.about{
    padding: 5% 0 5% 0;

}


	.avatar img{
float: left;
		width: 50%;
		padding: 0 6% 3% 0;
}


.nav-link {
    position: absolute;
    right: 0;
    height: 92vh;
    top: 8vh;
    background-color: #05afaa;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .nav-link li {
    opacity: 0;
	padding: 10% 0;
  }
  .burger {
    display: block;
	 	 z-index: 4;
	cursor: pointer;

  }

.info h3{
	text-align: center;
	font-size: 1.5em;
}


.services{

	width: 100%;
	padding: 5% 2%;
}

.services img{
margin: 5% 22%;


}

	.info img{
		width: 300px;
}

	.projects h3{
		margin: 50% 0;
     
} 

	.north-star-logo{
		display: inline;
		
}


	.north-star-logo img{
		width: 360px;
}

	.all-for-one-logo{
		display: inline;
		
}

.wet-tech-logo{
		display: inline;

}



	.wet-tech-desktop{
		display: none;
}

	.wet-tech-tablet{
		display: block;
}

#floating-island-icon img{
	width: 100%;
	
}
#fog-icon img{
	width: 100%;
	
}

#aeriation-icon img{
	width: 100%;
	
}



	.all-for-one-logo img{
		width: 360px;
}



#afo-vector-1 img{
	width: 80%;
}

#afo-vector-2 img{
	width: 80%;
}

#afo-vector-3 img{
width: 80%;
}
#afo-vector-4 img{
width: 80%;
}






.starbucks-details img:nth-child(2){
	width: 100%;

}
.starbucks-details img:nth-child(3){
	border: solid 1px #272727;
	width: 100%;

}
.starbucks-details img:nth-child(4){
	width: 100%;

}

.starbucks-details img:nth-child(5){
	border: solid 1px #272727;
	width: 100%;
}

#ping-card img{
	width: 95%;
}
#ping-letterhead img{
	width: 95%;
}
#ping-lanyard img{
	width: 95%;
}
#ping-shirt img{
	width: 95%;
}
#ping-illustration img{
	width: 95%;
}


    .ping-logo{
        display: block;
}

.ping-logo img:nth-child(1), .ping-logo img:nth-child(2), .ping-logo img:nth-child(3){
 width: 260px;
  }

.ping-logo:nth-child(2){
    padding:0;
}


	
}


@media only screen and (max-width: 630px) {

.project-banner p{
	font-size: 1em;
    line-height: 2em;
    margin: 3% 5% 0 5%;
   width: 90%;

}


	ul.breadcrumb{
		padding-top: 30px;
}

.project-banner{
	padding-top: 35%;
}

#tmg-trifold img{
	width: 90%;
}

#tmg-flyer img{
	width:90%;
}

#mathers-window img{
	width: 90%;
}

#mathers-tabletent img{
	width: 90%;
}

#aloha-tanktop img{
	width: 90%;
}


#aloha-shirt-front img{
	width: 45%;
}

#aloha-shirt-back img{
	width: 45%;
}

#aloha-tanktop-front img{
	width: 45%;
}

#aloha-tanktop-back img{
	width: 45%;
}


#aloha-hat img{
	width:45%;
}

#aloha-glassware img{
	width: 45%;
}


#robinson-membership-1 img{
    width: 45%;
    
}

#robinson-membership-2 img{
    width: 45%;
    
}

#robinson-membership-3 img{
    width: 45%;
    
}
#robinson-wine img{
    width: 43.5%;
}

#cream-1 img{
    width: 45%;
}

#cream-2 img{
    width: 45%;
}

#fluffy-latte img{
    width: 90%;
}

#mimosa img{
    width: 90%;
}


}

@media only screen and (max-width: 600px) {
	


.magazine-ad-2{
     width: 48%;
    height: 200px;
    background-position: center ;
    background-size: cover;
  
}

.magazine-ad-3{
     width: 48%;
    height: 200px;
    background-position: center ;
    background-size: cover;

}


	.postcard{
		width: 450px
}

	.postcard2{
		width: 450px;
}


	.north-star-details{
		padding-top: 10%;
}

#north-star-stationary img{
	width: 100%;
}
#north-star-business-card img{
	width: 45%;
}
#north-star-letterhead img{
	width: 54%;
}

#north-star-folder img{
	width: 52%;
}
#north-star-postcard img{
	width: 47%;
}
#north-star-lanyarde img{
	width: 48%;
}
#north-star-desktop img{
	width: 51%;
}
#north-star-email img{
	width: 49%;
}
#north-star-signature img{
	width: 50%;
}
#north-star-cargo img{
    
	width: 100%;
}


#tmg-trifold img{
	width: 100%;
}

#tmg-flyer img{
	width:100%;
}

#mathers-window img{
	width: 100%;
}

#mathers-tabletent img{
	width: 100%;
}

#aloha-tanktop img{
	width: 100%;
}


#aloha-shirt-front img{
	width: 100%;
}

#aloha-shirt-back img{
	width: 100%;
}

#aloha-tanktop-front img{
	width: 100%;
}

#aloha-tanktop-back img{
	width: 100%;
}


#aloha-hat img{
	width:100%;
}

#aloha-glassware img{
	width: 100%;
}


#robinson-membership-1 img{
    width: 100%;
    
}

#robinson-membership-2 img{
    width: 100%;
    
}

#robinson-membership-3 img{
    width: 100%;
    
}
#robinson-wine img{
    width: 100%;
}

#cream-1 img{
    width: 100%;
}

#cream-2 img{
    width: 100%;
}

#fluffy-latte img{
    width: 100%;
}

#mimosa img{
    width: 100%;
}


}

@media only screen and (max-width: 468px){




    .about h3, .about h2{
        width: 100%;
}

    .about h2{
        margin-bottom: 10%;
}

	.about p{
		width: 100%;
}

#north-star-stationary img{
	width: 100%;
}
#north-star-business-card img{
	width: 100%;
}
#north-star-letterhead img{
	width: 100%;
}

#north-star-folder img{
	width: 100%;
}
#north-star-postcard img{
	width: 100%;
}
#north-star-lanyarde img{
	width: 100%;
}
#north-star-desktop img{
	width: 100%;
}
#north-star-email img{
	width: 100%;
}
#north-star-signature img{
	width: 100%;
}
#north-star-cargo img{
    
	width: 100%;
}


#afo-vector-1 img{
	width: 100%;
}

#afo-vector-2 img{
	width: 100%;
}

#afo-vector-3 img{
width: 100%;
}
#afo-vector-4 img{
width: 100%;
}


	.wet-tech-details img{
		margin: 10px 0;
}

	.wet-tech-tablet{
		display: none;
}

	.wet-tech-mobile{
		display: block;
}



#poster-peru-1 img{
width: 100%;
}

#poster-peru-2 img{
width: 100%;
}

#poster-peru-3 img{
width: 100%;
}

#peru-book-1 img{
	width: 100%;
}
#peru-book-2 img{
	width: 100%;
}

#peru-book-3 img{
	width: 100%;
}

#peru-subway img{
	width: 100%;
}
#peru-postcard-1 img{
	width: 100%;
}
#peru-postcard-2 img{
	width: 100%;
}




.north-star-logo img{
		width: 250px;
}

	.all-for-one-logo img{
		width: 250px;
}

.magazine-ad{
     width: 100%;
    height: 200px;
    background-color: white;
	}
   


.subway-poster{
    width: 100%;
    height: 250px;
  background-position: center;
    background-size: cover;
	background-repeat:no-repeat;
   
}

.peru-posters{
    width: 30%;

}

.peru-posters:nth-child(2){
  padding: 0 3%;
}


	
	.postcard{
		width: 100%;
		
}

	.postcard2{
		width: 100%;
	
}

}



@media only screen and (max-width: 454px){
 
    .projects a{
	margin: 12% 25% 0 25%;
	font-size: 1.8em;
    width: 50%;
    text-align: center;
    }
    
}




@media only screen and (max-width: 425px) {



	ul.breadcrumb{
		display: none;
}

	.mobile-text{
		padding-top: 10%;
}

	.avatar img{
		padding: 10% 0;
		width: 50%;
		float: none;
		display: inline-block;
		margin: 0 25%;
}

	.services img{
		margin: 0 10%;
}

	.work{
		width: 60%;
		margin: 5% 0;
		padding: 30% 15%;
}


.magazine-ad-2{
     width: 100%;
    height: 200px;
  
}

.magazine-ad-3{
     width: 100%;
    height: 200px;
 
}

.button a{
	margin:  9% 0;
	text-decoration: none;
	color: white;
	background-color:#3dbfc9;
	font-family: 'Open Sans', sans-serif;
	padding: 6% 10%;
	transition: 0.4s;
	width: 80%;
	float: left;

}

.button-single a{
	margin:  9% 0;
	text-decoration: none;
	color: white;
	background-color:#3dbfc9;
	font-family: 'Open Sans', sans-serif;
	padding: 6% 10%;
	transition: 0.4s;
	width: 80%;
	float: left;

}

#ping-card img{
	width: 100%;
}
#ping-letterhead img{
	width: 100%;
}
#ping-lanyard img{
	width: 100%;
}
#ping-shirt img{
	width: 100%;
}
#ping-illustration img{
	width: 100%;
}

}


.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}





