@charset "UTF-8";
/* CSS Document */

@font-face {    
font-family: 'Quicksand-bold';
src: url(../font/quicksand-bold-webfont.woff) format('woff'),
     url(../font/quicksand-bold-webfont.woff2) format('woff2');
font-weight: bold; 
}

@font-face {    
font-family: 'Quicksand';
src: url(../font/quicksand-regular-webfont.woff) format('woff'),
     url(../font/quicksand-regular-webfont.woff2) format('woff2');
font-style: normal;
}

* {
  box-sizing: border-box;
}

@-ms-viewport{
  width: device-width;
}

body {
	margin: 0 auto;
}

#logo {
	width: 50px;
	display: inline;
	margin: 20px 0 0 20px;
}

/* Nav */

nav {
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 3;
	height: 90px;
}

nav ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
}

nav li a {
	font-family: 'Quicksand';
    color: #16164C;/*blue*/
	font-size: 1em;
    display: block;
    text-decoration: none;
	position: relative;
	margin: 0;
	
}

nav li a:before, nav li a:after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
/*  height: 2px;*/
  border-bottom: 2px solid #16164C;
  width: 30%;
  margin: 0 auto;
/*  padding-bottom: 0.3rem;*/
}

nav li a:before {
  opacity: 0;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  transition: opacity 0s, -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s;
  transition: transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s, -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

nav li a:after {
  opacity: 0;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav li a:hover:before, nav li a:hover:after, .menu__checkbox:hover:before, .menu__checkbox:hover:after {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
nav li a:hover:before, .menu__checkbox:focus:before {
  transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav li a:hover:after, .menu__checkbox:focus:after {
  transition: opacity 0s 0.2s, -webkit-transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s 0.2s;
  transition: transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s 0.2s, -webkit-transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#bar {
	width: 80%;
	display: inline;
	position: absolute;
	top: 35px;
	left: 80px;
}

#bar p {
  font-family: 'Quicksand-bold';
  text-transform: uppercase;
/*  font-family: 'acme';*/
  font-size: 1em;
  display: inline;
  color: #3F3FA2;
  animation: move 60s linear infinite;
  -webkit-animation: move 60s linear infinite;
/*  animation-iteration-count: 1;*/
}


@keyframes move {
   0% {
    margin-left: 50%;
    width: 100%;
	opacity: 0;
  }

  2% {
    margin-left: 0;
    width: 100%;
	opacity: 1;
  }
	
	15% {
	opacity: 1;	
	}
	
	16% {
	opacity: 0;	
	}
  
	100% {
		opacity: 0;
	}
}
            
@-webkit-keyframes move {
   0% {
    margin-left: 50%;
    width: 100%;
	opacity: 0;
  }

  2% {
    margin-left: 0;
    width: 100%;
	opacity: 1;
  }
	
	15% {
	opacity: 1;	
	}
	
	16% {
	opacity: 0;	
	}
  
	100% {
		opacity: 0;
	}
}


/* menu */

.menu {
    display: none;
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}


/* menu icon */

/*
.menu__icon {
    cursor: pointer;
    display: block;
    float: left;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.hamburger {
    background: #333;
    display: block;
    height: 3px;
    position: relative;
    transition: background .2s ease-out;
    width: 30px;
}

.hamburger:before,
.hamburger:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .5s ease-out;
    width: 100%;
}

.hamburger:before {
    top: 8px;
}

.hamburger:after {
    top: -8px;
}


 menu checkbox 

.menu__checkbox {
    opacity: 0;
}

.menu__checkbox:checked~.menu {
    max-height: 240px;
    display: block;
}

.menu__checkbox:focus~.menu__icon {
    outline: #5E9ED6 1px solid;
    background-color: #f4f4f4;
}

.menu__checkbox:checked~.menu__icon {
    background-color: #f4f4f4;
}

.menu__checkbox:checked~.menu__icon .hamburger {
    background: transparent;
}

.menu__checkbox:checked~.menu__icon .hamburger:before {
    transform: rotate(-225deg);
}

.menu__checkbox:checked~.menu__icon .hamburger:after {
    transform: rotate(225deg);
}

.menu__checkbox:checked~.menu__icon:not(.steps) .hamburger:before,
.menu__checkbox:checked~.menu__icon:not(.steps) .hamburger:after {
    top: 0;
}
*/

/*subnav*/

.subnav {
    display: flex;
	clear: none;
	width: 100%;
	overflow: auto;
}

.subnav ul {
    margin: 100px 0 0 0;
    padding: 0;
    list-style: none;
	display: inline;
	list-style-type: none;
}

.subnav li {
	display: inline;
	padding: 0 20px 0 0;
}


.subnav li a {
	font-family: 'Quicksand-bold';
    color: #3F3FA2;/*blue*/
	font-size: 0.9em;
    display: inline-block;
    margin: 0 0 0 20px;
    background-image: linear-gradient(#16164C, #16164C);
    background-position: 0 4rem;
    background-size: 4px 4px;
    background-repeat: repeat-x;
	text-decoration: none;
    transition: all 250ms ease-out;
	padding: 0.3rem 1rem;
	border-bottom: 1px solid #3F3FA2;
}


.subnav li a:hover, .subnav li a:focus {
  background-image: linear-gradient(to bottom, #3F3FA2, #3F3FA2 2%, #3F3FA2 2%, #16164C);
  background-position: 0 0;
  background-size: 100% 100%;
  border-top-right-radius: 25px;
  color: #fff;
  padding: 0.3rem 1rem;
  text-decoration: none;
}

.subnav li a:active {
  background-image: linear-gradient(to bottom, #16164C, #16164C 2%, #16164C 2%, #16164C);
  border-radius: 15px;
  text-decoration: none;
}

/* project section*/

section {
	margin: 0 auto;
	overflow: auto;
/*	padding-top: 100px;*/
}

.projectcontainer {
	width: 90%;
	margin: 0 auto 100px;
}



/*------------------section------------------*/
.projectnav {
    height: auto;
    width: 90%;
	padding: 0 10px;
	margin: 100px auto 0;
	text-align: center;	
}

.navcontainer {
	display: inline-flex;
	align-items: center;
}

a {
	cursor: pointer;
	text-decoration: none;
}

h2 {
	font-family: 'Quicksand-bold';
	font-size: 1.01em;
	color: #16164C;
	font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 0 20px;
}

h3 {
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
	color: #16164C;
	text-align: center;
	margin: 140px 0 30px;
	font-size: 1.250em;
}

h4 {
	font-family: 'Quicksand-bold';
	text-align: center;
    text-transform: uppercase;
}


h5 {
	font-family: 'Quicksand';
	color: #fff;
    text-align: center;
    text-transform: uppercase;
}

h6 {
	font-family: 'Quicksand';
	font-size: 0.6em;
	color: #16164C;
	font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 10px 20px;
}

p {
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
	color: #707070;
	margin: 0 auto;
	font-size: 1em;
	line-height: 20px;
    text-align: center;
}

.intro p {
	width: 80%;
	text-align: left;
}

.intro1 {
	width: 80%;
	margin: 0 auto;
}

.fas, .fab{
		font-family: "FontAwesome";
		font-size: 1.2em;
		color: #3F3FA2;
		cursor: pointer;
		text-decoration: none;
		font-style: normal;
	    margin: 0 10px;
}

.fas:hover {
	opacity: 0.7;
}

.fab:hover {
	opacity: 0.7;
}

.contact {
	width: 90%;
	text-align: center;
	margin: 0 auto;
	border-bottom: 1px solid #3F3FA2;
	padding-bottom: 10px;
}

figure.project {
  color: #fff;
  position: relative;
  overflow: hidden;
  background-color: #16164C;
  width: 100%;
  margin: 20px auto;
  -webkit-perspective: 50em;
  perspective: 50em;
  display: flex;
  -ms-align-items: center;
  align-items: center;  
}

figure h4 {
	font-size: 1.6em;
	margin: 80px auto 10px;
}

figure h5 {
	font-size: 0.7em;
	margin: 20px auto 50px;
}

figure a {
	font-family: 'Quicksand';
}

figure.project * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

figure.project img {
  opacity: 1;
  width: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
figure.project figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% -50%;
  -ms-transform-origin: 50% -50%;
  transform-origin: 50% -50%;
  z-index: 1;
  opacity: 0;
  padding: 20px;
  display: inline-block;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  vertical-align: middle;
}

figure.project .viewproject {
  border: 2px solid #ffffff;
  padding: 0.5em 1em;
  font-size: 0.8em;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
}

figure.project .viewproject:hover {
  background-color: #ffffff;
  color: #000000;
}
figure.project:hover img,
figure.project.hover img {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0;
}
figure.project:hover figcaption,
figure.project.hover figcaption {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.title {
	padding-top: 30px; 
}

.mainimage {
	width: 100%;
	height: 330px;
	margin: 20px auto;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

#project-pandoras {
	background: url(../image/pandoras-main-s.jpg) no-repeat center center/contain;
}

#project-arty {
	background: url(../image/mockup-main-arty.jpg) no-repeat center center/contain;
}

#project-circle {
	background: url(../image/project-circle-small.jpg) no-repeat center center/contain;
}

#project-moviecheck {
	background: url(../image/moviecheckmainimg.jpg) no-repeat center center/contain;
}

#project-fitness {
	background: url(../image/gofitness-main.jpg) no-repeat center center/contain;
}

#project-gofresco {
	background: url(../image/gofresco-main.jpg) no-repeat center center/contain;
}

.roles {
	width: 80%;
	margin: 0 auto; 
}

.roles p {  
	text-align: left;
	width: 70%;
}

img {
	width: 100%;
}

.responsive-image {
	width: 100%;
}

.bottomtap {
	display: inline-flex;
	width: 100%;
	margin: 80px 0 100px;
}

.bottombutton {
	width: 110px;
}

button a{
	font-family: 'Quicksand-bold';
	color: #fff;
}

.btn-overlay {
  background-color: #16164C;
  border-radius: 25px;
  height: 40px;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  margin: 30px auto;
  display: block;
}

.btn-overlay:after {
  content: '';
  position: absolute;
  width: 115%;
  height: 200px;
  background: #3F3FA2;
  transform: translateY(-45%) skew(25deg) scale(0);
  left: -5%;
  transition: 200ms ease-in-out;
}
.btn-overlay:hover:after {
  transform: translateY(-45%) skew(25deg) scale(1);
}
.btn-overlay span {
  position: relative;
  z-index: 1;
}

.roles {
		width: 100%;
		margin: 0 auto;
	}
	
	.roles p{
		text-align: left;
		line-height: 25px;
	}

/*-----------img section---------------*/

.projectphotocon {
	width: 90%;
	margin: 0 auto;
}

.projectimg {
	margin: 20px 0;
	-webkit-box-shadow: 1px 3px 8px rgba(0, 0, 0, .3);
  	-moz-box-shadow:    1px 3px 8px rgba(0, 0, 0, .3);
  	box-shadow:         1px 3px 8px rgba(0, 0, 0, .3);
}

.projecttablet .padsize {
		display: inline;
		width: 80%;
	    margin: 30px;
	}
	
	.projecttablet .phonesize {
		display: inline;
		width: 40%;
		margin: 30px 10px 0;
		float: left;
	}

	
	.wireframe {
		width: 90%;
		padding: 10px;
		margin: 50px auto 0;
	}
   
	.projectwf {
		width: 100%;
	}

/*---------------footer------------*/
footer {
/*	height: 40px;*/
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
}

.footer {
	width: 80%;
}

.footer p {
	font-family: 'Quicksand';
	font-size: 0.7em;
	color: #000;
}

/*---------------------about page--------------------------*/
.btn-download{
	margin: 50px auto;
	border-radius: 0;
}

.circle {
	width: 250px;
	height: 250px;
	position: relative;
	border-radius: 50%;
	margin: 30px auto;
	overflow: hidden;
	display: block;
}

.blushL {
  position: absolute;
  width: 16%;
  height: 8%;
  border-radius: 100%;
  background: #FF6A6E;
  z-index: 10;
  top: 75%;
  left: 10%;
  opacity: 0.4;
  box-shadow: inset -1em -0.4em 0 #ff9da0;
}

.blushR {
  position: absolute;
  width: 18%;
  height: 8%;
  border-radius: 100%;
  background: #FF6A6E;
  z-index: 10;
  top: 75%;
  right: 10%;
  opacity: 0.4;
  box-shadow: inset 1em -0.4em 0 #ff9da0;
}

.glassL {
  position: absolute;
  width: 38%;
  height: 28%;
  top: 55%;
  left:3%;
  border-bottom-left-radius: 40%;
  border-bottom-right-radius: 40%;
  background-color: transparent;
  border: 5px solid #000;
  z-index: 100;
}

.glassR {
  position: absolute;
  width: 40%;
  height: 28%;
  top: 55%;
  left:50%;
  border-bottom-left-radius: 40%;
  border-bottom-right-radius: 40%;
  background-color: transparent;
  border: 5px solid #000;
  z-index: 100;
}

.pouf {
  position: absolute;
  width: 120%;
  height: 100%;
  border-radius: 100%;
  background: #000000;
  top: -10%;
  left: -10%;
  z-index: -2;
}

.cheeks {
  position: absolute;
  width: 80%;
  height: 50%;
  border-radius: 80%;
  background: #FDE0D9;
  left: 11%;
  top: 55%;
  box-shadow: inset 0.3em -0.7em 0 #fcd4ca, -0.15em 0.2em 0 #fcccc1;
}

.head {
  position: absolute;
  width: 65%;
  height: 70%;
  border-radius: 50%;
  background: #FDE0D9;
  left: 20%;
  top: -5%;
  box-shadow: inset 1em -0.5em #fcd4ca;
  margin: 10%;
}

.hairL {
  position: absolute;
  width: 100%;
  height: 60%;
  border-radius: 70%;
  background: #000000;
  left: -15%;
  top: 0%;
  transform: rotate(-30deg);
  box-shadow: 0.3em -2em #262626;
}

.hairR {
  position: absolute;
  width: 80%;
  height: 20%;
  border-radius: 70%;
  background: #000000;
  left: 50%;
  top: 25%;
  transform: rotate(70deg);
}

.eyeL {
  position: absolute;
  top: 47%;
  width: 12%;
  height: 7%;
  background: #ffffff;
  border: 3px solid #595959;
  border-bottom: 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  left: 47%;
  transform: translateX(-50%);
  box-shadow: 0em -0.2em #cb8b7a, inset 0.3em 0.1em #d9d9d9;
}

.eyeR {
  position: absolute;
  top: 47%;
  width: 13%;
  height: 7%;
  background: #ffffff;
  border: 3px solid #595959;
  border-bottom: 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  right: 12%;
  transform: translateX(-50%);
  box-shadow: 0.03em -0.3em #cb8b7a, inset 0.3em 0.1em #d9d9d9;
}

.hairB {
  position: absolute;
  width: 100%;
  height: 150%;
  background-color: #000;
  z-index: -5;
}

.dot {
	position: absolute;
	width:1.6%;
	height:1.6%;
	border-radius: 50%;
	background-color: #000;
	top: 90%;
	left:27%;
	z-index:5;
}

.eyeBallL {
  position: absolute;
  top: 49%;
  width: 9%;
  height: 6%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background: #414141;
  left: 45%;
  box-shadow: inset 0.5em 0 0 #1a1a1a;
}

.eyeBallR {
  position: absolute;
  top: 49%;
  width: 9%;
  height: 6%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background: #414141;
  right: 20%;
  box-shadow: inset 0.5em 0 0 black;
}

.mouth {
  position: absolute;
  top: 55%;
  left: 42%;
  width: 15%;
  height: 8%;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  background: #ffffff;
  border: 5px solid #ED0645;
  margin: 10%;
}

.earR {
  position: absolute;
  width: 45px;
  height: 35px;
  background: #FDE0D9;
  border-radius: 100%;
  transform: rotate(20deg);
  box-shadow: inset 1em -0.6em 0 #fab8a9, inset -3em -0.6em 0 #fcccc1;
  top: 63%;
  right: -5%;
  z-index: -2;
}

.earL {
  position: absolute;
  width: 45px;
  height: 35px;
  background: #FDE0D9;
  border-radius: 100%;
  transform: rotate(-20deg);
  box-shadow: inset -1em -0.8em 0 #f9a590, inset -3em -0.6em 0 #fab8a9;
  top: 63%;
  left: 0%;
  z-index: -2;
}

.upperBody {
  position: absolute;
  width: 50%;
  height: 50%;
  background: #573B92;
  top: 110%;
  left: 28%;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  z-index: -3;
  box-shadow: inset 1em 1em 0 #2C1E49;
}

.neck {
  position: absolute;
  background: #FDE0D9;
  width: 13%;
  height: 15%;
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
  border-top-left-radius: 30%;
  box-shadow: inset 0em -1em 0 #573B92, inset 0.5em 1.5em 0 #f89178;
  top: 100%;
  left: 45%;
  z-index: -2;
}

.wave:after {
  content: "";
  display: block;
  height: 100%;
  width: 20%;
  border-radius: 10%;
  background-color: #FDE0D9;
  top: 80%;
  left: 15%;
}

.wave {
  position: relative;
  width: 35%;
  height: 10%;
  background-color: #573B92;
  top: 85%;
  left: 15%;
  border-radius: 10% 10%;
  transform: rotate(70deg);
  animation: hey 0.7s infinite;
  -moz-animation: hey 0.7s infinite;
  animation: hey 0.7s infinite;
  box-shadow: inset 1em -0.5em 0 #2C1E49;
}

.brow {
  position: absolute;
  width: 17%;
  height: 25px;
  top: 39%;
  right: 16%;
  border: solid 5px #414141;
  border-color: #414141 transparent transparent transparent;
  border-radius: 50%/25px 25px 0 0;
  z-index: 30;
  transform: rotate(6deg);
}

@keyframes hey {
  50% {
    top: 80%;
    left: 10%;
    transform: rotate(50deg);
    transform-origin: 10% -10%;
  }
}



/* 48em = 768px */

@media (min-width: 768px) {
	
	#bar {
		top: 30px;
	}
	
    nav li {
        float: left;
    }
    nav li a {
		font-family: 'Quicksand-bold';
        padding: 20px 30px;
    }
	
    .menu {
        display: block;
        clear: none;
        float: right;
        max-height: none;
		margin-right: 10px;
    }


    #logo {
	float: left;
	display: block;
}

	section {
		margin-bottom: 100px;
	}
	
	.projectcontainer {
		width: 100%;
/*		display: inline-block;*/
	}
	
	  .projectbox {
	    width: 45%;
		float: left;
		margin: 0 20px;
/*		clear: both;*/
	}
	
	
	h2 {
		font-size: 1.563em;
		margin: 0 50px;
	}
	
	h3 {
		font-size: 1.375em;
	}
	
	figure h4 {
		font-size: 1.7em;
		margin: 80px auto 10px;
	}

	figure h5 {
		font-size: 0.8em;
		margin: 20px auto 50px;
	}
	
	h6 {
		font-size: 0.7em;
	}
	
	p {
		font-size: 1.063em;
		line-height: 26px;
		width: 80%;
	}
	
	figcaption {
		margin-top: 30px;
	}
	
	.mainimage {
		width: 100%;
		height: 420px;
	}
	
	.projectphotocon {
		width: 80%;
	}
	
	.projecttablet .padsize {
		margin: 5px;
		display: inline;
		width: 32.5%;
		float: left;
	}
	
	.projecttablet .phonesize {
		margin: 5px;
		display: inline;
		width: 14%;
		float: left;
	}
	
	#project-pandoras {
	background: url(../image/pandorasbox-mainimg.jpg) no-repeat center center/contain;
}
	
	#project-circle {
	background: url(../image/circle-mockup-main.jpg) no-repeat center center/contain;
}
	
    #project-arty {
	background: url(../image/artypet-mainimg-l.jpg) no-repeat center center/contain;
}
	
	#project-gofresco {
	background: url(../image/gofresco-main-l.jpg) no-repeat center center/contain;
}
	
	#project-fitness {
	background: url(../image/fitness-main-l.jpg) no-repeat center center/contain;
}
	
	.intro {
		width: 70%;
		margin: 0 auto;
	}
	
	.wireframe {
		width: 80%;
	}
	
	.roles {
		width: 80%;
		margin: 0 auto;
		text-align: center;
	}
	
	.roles p{
		display: inline;
		margin-right: 20px;
		line-height: 35px;
	}
	

		
	.footer p {
		font-size: 0.8em;
	}

}



@media (min-width: 1080px) {
	
.menu {
		margin-right: 20px;
	}
	
.subnav {
		width: 20%;
		clear: none;
	    float: left;
	    position: fixed;
	}

.subnav ul {
    margin: 100px 0 0 0;
    list-style: none;
    overflow: hidden;
	display: inline;
}
	
.subnav li {
	display: block;
}


.subnav li a {
	font-size: 1em;
    display: inline-block;
    margin: 50px 0 50px 20px;
	}
	
	.projectcontainer {
		width: 80%;
		float: right;
		clear: none;
		margin: 100px 0 0;
		padding-top: 30px;
	}
	
	.projectbox {
		float: left;
	}
	
	
/*
	.project img {
		width: 100%;
	}
*/
	
	
	h2 {
		font-size: 1.875em;
		margin: 0 60px;
	}
	
	h3 {
	font-size: 1.625em;
	}
	
	h6 {
		font-size: 0.8em;
	}
	
	p {
		font-size: 1.1em;
		line-height: 30px;
		width: 60%;
	}
	
	.mainimage {
		width: 100%;
		height: 460px;
		margin: 0 auto;
	}
	
	.intro {
		width: 55%;
		margin: 0 auto;
	}
	
	figure h4 {
		font-size: 1.8em;
		margin: 80px auto 10px;
	}

	figure h5 {
		font-size: 0.9em;
		margin: 20px auto 50px;
	}
	
	figcaption {
		margin-top: 70px;
	}
	
	/*-------------project section----------------------*/
	
	.projectphotocon {
		width: 60%;
		margin: 0 auto;
	}
	
	.projectimg {
		margin: 50px 0;
	}
	
	.wireframe {
		width: 60%;
	}
   
	.projectwf {
		width: 100%;
	}
	
	.contact {
		position: fixed;
		left: 20px;
		bottom: 20px;
		text-align: center;
	    width: 5%;
		border-left: 1px solid #3F3FA2;
/*
		display: flex;
		justify-content: space-between;
*/
		height: 100px;
	}
	
	
	.projecttablet .padsize {
		margin: 5px;
		display: inline;
		width: 32.5%;
		float: left;
	}
	
	.projecttablet .phonesize {
		margin: 5px;
		display: inline;
		width: 15%;
		float: left;
	}
	
	.roles {
		width: 60%;
		text-align: center;
	}
	
	.roles p{
		display: inline;
		margin-right: 30px;
		line-height: 50px;
	}
	
	
	.fas {
		font-size: 1.2em;
	}
	
	.fab {
		font-size: 1.3em;
	}
	
	.fa-envelope {
		position: absolute;
		bottom: 60px;
		left: 15px;
	}
	
	.fa-linkedin {
		position: absolute;
		bottom: 20px;
		left: 15px;
	}
	
	.aboutpage p {
		width: 70%;
	}

}