html, 
body, 
.container, 
.content-wrap {
	overflow: hidden;
	width: 100%;
	height: 100%;
	background:#f1f1f1;
	letter-spacing: 0.1em;
}

/* /////////////////////////////////////////////////////  */
/* ////////////////////// Loadscreen ////////////////////// */
/* /////////////////////////////////////////////////////  */


#loadscreen
{
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 10000;
	background-color: #f1f1f1;
}
.sk-cube-grid {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #5BD9B3;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
          animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); 
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
  } 
}

/* load screen ends */
.container {
	background: #fff;
}

.menu-wrap a {
	color: #f1f1f1;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #fffce1;
}

.content-wrap {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.content {
	position: relative;
	background: #f1f1f1;
	padding-bottom: 12em;
}

/* Common styles for menu button and menu-wrap */
.menu-button,
.menu-wrap {
	position: fixed;
	width: 2.5em;
	height: 2.25em;
	font-size: 1.5em;
	-webkit-transform: translate3d(1.5em,1.5em,0);
	transform: translate3d(1.5em,1.5em,0);
}

/* Menu Button */
.menu-button {
	z-index: 1000;
	margin: 0;
	padding: 0;
	border: none;
	text-indent: 2.5em;
	color: transparent;
	background: #2C3E50;
}

.menu-button::before {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	bottom: 0.5em;
	left: 0.5em;
	background: linear-gradient(#f1f1f1 20%, transparent 20%, transparent 40%, #fffce1 40%, #fffce1 60%, transparent 60%, transparent 80%, #fffce1 80%);
	content: '';
}

.menu-button:hover {
	opacity: 0.6;
}

/* Menu */
.menu-wrap {
	z-index: 999;
	background: #2C3E50;
	-webkit-transition: width 0.4s, height 0.4s, -webkit-transform 0.4s;
	transition: width 0.4s, height 0.4s, transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu {
	height: 100%;
	overflow: hidden;
	font-size: 0.75em;
}

.icon-list {
	float: right;
	padding: 2.5em 4em 0 4em;
}

.icon-list a {
	opacity: 0;
	display: inline-block;
	padding: 0 1em;
	margin: 0 15px;
	text-align: center;
	font-size: 1.5em;
}

.icon-list a span {
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.5em;
	font-weight: 700;
	padding-top: 0.5em;
}

@media screen and (max-width: 50em) {
	.icon-list a {
		padding: 0.5em 0em;
		margin: 0 5px;
		font-size: 1em;
	}
	.icon-list a span {
		display: none;
	}
}

/* Shown menu */
.show-menu .content-wrap {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translate3d(0,125px,0);
	transform: translate3d(0,125px,0);
}

.show-menu .menu-wrap {
	width: 100%;
	height: 125px;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.show-menu .icon-list a {
	opacity: 1;
	-webkit-transition: opacity 0.4s 0.4s;
	transition: opacity 0.4s 0.4s;
}

.show-menu .icon-list a:nth-child(2) {
	-webkit-transition-delay: 0.42s;
	transition-delay: 0.42s;
}

.show-menu .icon-list a:nth-child(3) {
	-webkit-transition-delay: 0.44s;
	transition-delay: 0.44s;
}

.show-menu .icon-list a:nth-child(4) {
	-webkit-transition-delay: 0.46s;
	transition-delay: 0.46s;
}

.show-menu .icon-list a:nth-child(5) {
	-webkit-transition-delay: 0.48s;
	transition-delay: 0.48s;
}

.show-menu .icon-list a:nth-child(6) {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

@import url(http://fonts.googleapis.com/css?family=Raleway:200,400,700,800);
@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'codropsicons';
	src:url('../fonts/codropsicons/codropsicons.eot');
	src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
		url('../fonts/codropsicons/codropsicons.woff') format('woff'),
		url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
		url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}

*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

body {
	background: #b4bad2;
	color: #fffce1;
	font-weight: 400;
	font-size: 1em;
	font-family: 'Raleway', Arial, sans-serif;
}

a {
	color: #4e4a46;
	text-decoration: none;
	outline: none;
}

a:hover, a:focus {
	color: #c94e50;
	outline: none;
}

button:focus {
	outline: none;
}

section {
	padding: 1em;

}

body #cdawrap {
	top: auto;
	bottom: 35px;
	right: 35px;
	background: #b4bad2;
	border: 1px solid rgba(131,135,151,0.6);
}

.demo-wave body #cdawrap {
	top: 35px;
	right: 35px;
	bottom: auto;
}


.content-c
{
	margin: 35px;
	position: absolute;
	left: 0;
	right: 0;
	width: 95%;
	min-height: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* /////////////////////////////////////////////////////  */
/* ////////////////////// Typedjs  ////////////////////// */
/* /////////////////////////////////////////////////////  */

.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
    color: #5BD9B3;
    background-color: #5BD9B3;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

/* /////////////////////////////////////////////////////  */
/* ////////////////////// Sections ////////////////////// */
/* /////////////////////////////////////////////////////  */
/* /////////////////////////////////////////////////////  */
/* ////////////////////// HOME ////////////////////// */
/* /////////////////////////////////////////////////////  */
#shadow-root
{
	display: block;
}
#home
{
	min-height: 900px;
	width: 100%;
	position: relative;
}
#detailedWork
{
	height: 100vh;
	width: 100%;
	position: relative;
}

.homeAd1
{
	position: absolute;
	width: 100%;
	height: 600px;
	display: block !important;
	left: 0;
	top: 0;
	background: url(../imgs/bg11.jpg);
	background-size: 100% auto;
	background-position: center;
	background-attachment: fixed;
}
.workAd1
{
	position: absolute;
	width: 100%;
	height: 600px;
	display: block !important;
	left: 0;
	top: 0;
	background: url(../imgs/6.jpg);
	background-size: 100% auto;
	background-position: center;
	background-attachment: fixed;
}
#homeAd2
{
	position: absolute;
	width: 45%;
	height: 300px;
	top: 550px;
	left: 5%;
	background-color: #fff;
	z-index: 10;
}
#workAd2
{
	position: absolute;
	width: 45%;
	height: 150px;
	top: 550px;
	left: 5%;
	background-color: #fff;
	z-index: 10;
	padding: 6em 4em;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: space-evenly;
}
.worktitle
{
	padding: 4em 75px 2em 75px;
	font-size: 1.2em;
}
#homeAd2 h5
{
	color: #2C3E50;
	font-size: 1.2em;
	margin: 0;
	opacity: 0.8;
	padding: 3em 1em 0 2em;
	font-weight: 400;
	width: 80%;
}
#homeAd2 h5 span
{
	display: block;
	margin-top: 0.5em;
	color: #1abc9c;
	font-weight: 800;

}
#resbtn
{
	padding: 0.5em 1em;
	transition: 0.2s;
	border-radius: 1em;
	margin: 2em 0;
	float: left;
	color: #111;
	border: 1px solid #5BD9B3;
}
#resbtn:hover
{
	background-color: #5BD9B3;
	color: #2C3E50;
}
#homeAd2 h2 strike
{
	opacity: 0.8;
	font-weight: 200;
}
#homeAd2 h2
{
	color: #2C3E50;
	font-size: 3em;
	margin: 0;
	padding: 1em;
	padding-top: 1.8em;
}
#homeAd3
{
	position: absolute;
	width: 45%;
	height: 350px;
	top: 500px;
	right: 5%;
	background-color: #2C3E50;
	z-index: 10;
	padding: 4em;
	padding-top: 6em;
}
#workAd3
{
	position: absolute;
	width: 45%;
	height: 200px;
	top: 500px;
	right: 5%;
	background-color: #2C3E50;
	z-index: 10;
	padding: 4em;
	padding-top: 6em;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: space-evenly;
	color: #fff;
}
#workAd3 a
{
	color: #fff;
}
#homeAd3 h3
{
	color: #fff;
	font-size: 1.9em;
	text-align: right;
	margin: 0;
}
#homeAd3 h3 span
{
	font-weight: 200;
	font-size: 0.8em;
}
#homeAd3 p
{
	color: #fff;
	font-size: 1.2em;
	
	text-align: right;
}
#homeAd3 a
{
	color: #5BD9B3;
	
}
#homeAd4
{
	position: absolute;
	width: 50%;
	height: 600px;
	top: 0;
	right: 0;
	background-color: rgba(255,255,255,0.12);
}
#workAd4
{
	position: absolute;
	width: 50%;
	height: 600px;
	top: 0;
	right: 0;
	background-color: rgba(255,255,255,0.12);
	display: flex;
	justify-content: center;
	align-items: center;
}
.border-img
{
	width: 50vh;
	height: 50vh;
	border: 1px solid #fff;
	border-radius: 3em;
	padding: 2em;
	transition: 0.3s;
	z-index: 15;
}
.border-img:hover
{
	transform: scale(1.05);
}
.img_container
{
	border-radius: 3em;
	overflow: hidden;
	
}
.img_container img
{
	height: 100%;
	width: 100%;
}

#homeAdLogo
{
	height: 100px;
	width: 100px;
	border-radius: 100%;
	background-color: #f1f1f1;

	position: absolute;
	top: 650px;
	left: 50%;
	margin-left: -50px;
	z-index: 15;
	overflow: hidden;
	transition: 1s;
}
#homeAdLogo:hover
{
	transform: rotateY(180deg) rotateX(360deg) rotateY(180deg);
}
#homeAdLogo img
{
	width: 100%;
	height: 100%;
}

#workAdLogo
{
	height: 100px;
	width: 100px;
	border-radius: 100%;
	background-color: #f1f1f1;

	position: absolute;
	top: 575px;
	left: 50%;
	margin-left: -50px;
	z-index: 15;
	overflow: hidden;
	transition: 1s;
}
#workAdLogo:hover
{
	transform: rotateY(180deg) rotateX(360deg) rotateY(180deg);
}
#workAdLogo img
{
	width: 100%;
	height: 100%;
}


.element
{
	color: #fff;
	font-size: 4em;
	text-align: left;
	padding-top: 125px;
	padding-left: 75px;
	font-family: 'Raleway', sans-serif;
	width: 40vw;
}
.element2
{
	color: #fff;
	font-size: 1em;
	text-align: left;
	padding-top: 10px;
	padding-left: 75px;
	font-family: 'Raleway', sans-serif;
	width: 40vw;
}
.homeAd1 h5
{
	font-size: 1.2em;
	text-align: left;
	padding-left: 75px;
	font-family: 'Raleway', sans-serif;
	font-weight: 200;
	width: 50%;
}
.homeAd1 a
{
	padding: 1em 2em;
	color: #fff;
	margin-top: 50px;
	font-size: 1.2em;
	background-color: #5BD9B3;
	text-align: left;
	z-index: 20;
	position: absolute;
	left: 75px;
	top: 380px;
}

/* /////////////////////////////////////////////////////  */
/* ////////////////////// Goals ////////////////////// */
/* /////////////////////////////////////////////////////  */

#goals h2
{
	font-size: 3em;
	font-family: 'Raleway', sans-serif;
	color: #2C3E50;
	font-weight: 200;
	text-align: center;
}
#goals h2 span
{
	color: #5BD9B3;
	font-weight: 400;
	padding-left: 30px;
}

#goals p
{
	font-size: 1.8em;
	color: #727272;
	padding: 0 5em;
	text-align: justify;
	margin-bottom: 100px;
}

.horirule
{
	width: 200px;
	height: 0;
	border-top: 2px solid #b6b6b6;
	margin-left: auto;
	margin-right: auto;
}


/* /////////////////////////////////////////////////////  */
/* ////////////////////// About ////////////////////// */
/* /////////////////////////////////////////////////////  */

.grid {
	margin: 40px auto 120px;
	max-width: 1000px;
	width: 90%;
}
.grid2
{
	margin: 40px auto 50px;
	max-width: 1000px;
	width: 90%;
}
.grid h2
{
	font-size: 3em;
	color: #2C3E50;
	font-family: 'Raleway', sans-serif;
	font-weight: 200;
	text-align: center;
}
.grid h2 span
{
	color: #5BD9B3;
	font-weight: 400;
}
.grid a {
	float: left;
	max-width: 350px;
	width: 33%;
	color: #333;
}

.gridalt {
	margin: 50px 0 -50px 0;
}

.grid figure {
	position: relative;
	overflow: hidden;
	margin: 10px;
	background: #333;
}
.grid figure div
{
	height: 100%;
	width: 50%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
	background-color: rgba(255,255,255,0.15);

}
.grid figure img {
	position: relative;
	display: block;
	width: 100%;
	opacity: 0.7;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.grid figcaption {
	position: absolute;
	top: 0;
	z-index: 11;
	padding: 10px;
	width: 100%;
	height: 100%;
	text-align: center;
}

.grid figcaption h2 {
	margin: 0 0 20px 0;
	font-family: 'Raleway', sans-serif;
	color: #5BD9B3;
	letter-spacing: 1px;
	font-weight: 400;
	font-size: 2em;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.grid figcaption h2 span
{
	color: #2C3E50;
}
.grid figcaption p {
	font-family: 'Raleway', sans-serif;
	font-size: 1.4em;
	text-align: justify;
	padding: 0 20px;
	color: #aaa;
	font-weight: 300;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	letter-spacing: 0.05em;
}

.grid figcaption h2,
.grid figcaption p {
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
}

.grid figure button {
	position: absolute;
	padding: 4px 20px;
	border: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.grid figcaption,
.grid figcaption h2,
.grid figcaption p,
.grid figure button {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Style for SVG */
.grid svg {
	position: absolute;
	top: -1px; /* fixes rendering issue in FF */
	z-index: 10;
	width: 100%;
	height: 100%;
	text-align: left;
}

.svg1 path {
	fill: #2C3E50;
}

.svg2 path{
	fill: #fff;
}

/* Hover effects */
.grid a:hover figure img {
	opacity: 1;
}

.grid a:hover figcaption h2,
.grid a:hover figcaption p {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.grid a:hover figcaption p {
	opacity: 0;
}

/* Individual styles */


.grid figure button {
	top: 50%;
	left: 50%;
	border: 3px solid #fff;
	background: transparent;
	color: #fff;
	opacity: 0;
	-webkit-transform: translateY(-50%) translateX(-50%) scale(0.25);
	transform: translateY(-50%) translateX(-50%) scale(0.25);
}

.grid a:hover figure button {
	opacity: 1;
	-webkit-transform: translateY(-50%) translateX(-50%) scale(1);
	transform: translateY(-50%) translateX(-50%) scale(1);
}


/* /////////////////////////////////////////////////////  */
/* //////////////////// portfolio ////////////////////// */
/* /////////////////////////////////////////////////////  */

#portfolio
{
	background-image: url('../imgs/bg5.jpg');
	background-position: center;
	background-size: cover;
	min-height: 400px;
	width: 100%;
	position: relative;
	padding: 0;
}
#portfolio h2
{
	color: #fff;
	font-size: 4em;
	text-align: center;
	font-weight: 400;
	font-family: 'Raleway',sans-serif;
	padding-top: 50px;
}
#portfolio h2 span
{
	color: #5BD9B3;
}
#workslink
{
	color: #fff;
	padding: 1em 2em;
	font-family: 'Raleway',sans-serif;
	font-size: 1.7em;
	position: absolute;
	top: 400px;
  	left: 50%;
  	z-index: 15;
  	/* bring your own prefixes */
  	transform: translate(-50%, -50%);
  	-webkit-transform: translate(-50%, -50%);
	font-weight: 400;
	background-color: #5BD9B3;
}
.shade
{
	width: 50%;
	height: 400px;
	z-index: 5;
	position: absolute;
	top: 0;
	right: 0;
	background-color: rgba(255,255,255,0.15);
}
.skills
{
	display: flex;
	box-sizing: border-box;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	padding: 1em;
}
.skills h5
{
	text-align: center;
	color: #2C3E50;
}
.skills li
{
	background-color: rgba(256,256,256,0.4);
	width: 10vh;
	height: 10vh;
	float: left;
	margin: 2em;
	transition: 0.4s;
	color: #2c3e50;
	text-align: center;
	list-style-type: none;
	padding: 1em;
	border-radius: 2em;
	filter: drop-shadow(5px 5px 11px rgba(0,0,0,0.2));
}
.skills li img
{
	width: 100%;
	height: 100%;
}
.skills li:hover
{
	animation: jello;
	animation-duration: 0.8s;
}
.skills li h5
{
	text-align: center;
	font-size: 1.2em;
}


.haze
{
	position: absolute;
	width: 100%;
	height: 300px;
	top: 100px;
	z-index: 10;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2C3E50+0,2C3E50+100&0+0,1+100 */
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2c3e50+0,2c3e50+100&0+0,1+100 */
background: -moz-linear-gradient(top,  rgba(44,62,80,0) 0%, rgba(44,62,80,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(44,62,80,0) 0%,rgba(44,62,80,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(44,62,80,0) 0%,rgba(44,62,80,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002c3e50', endColorstr='#2c3e50',GradientType=0 ); /* IE6-9 */

}
.featured_contents
{
	position: absolute;
	width: 100%;
	min-height:1150px;
	top: 400px;
	padding: 6em;
	background-color: #2C3E50; 
}
.featured_contents div h3
{
	text-align: center;
	font-size: 1.5em;
}
.heading-container
{
	margin: 0 auto;
	border-bottom: 3px solid #1abc9c;
	padding: 1em;
}


.projects-1
{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}
.projects-1 li
{
	width: 32vh;
	position: relative;
	height: 35vh;
	overflow: hidden;
	font-size: 1.3em;
	
}
.projectBox
{
	height: 20vh;
	width: 20vh;
	background-color: #b4bad2;
	border-radius: 3em;
	box-sizing: border-box;
	margin: 2em;
	position: absolute;
	border: 2px solid white;
	filter: drop-shadow(5px 5px 11px rgba(0,0,0,0.7));
}
#pB1
{
	background-image: url('../imgs/Fire\ &\ Smoke.jpg');
	background-size: cover;
}
#pB2
{
	background-image: url('../imgs/distil4.jpg');
	background-size: cover;
}
#pB3
{
	background-image: url('../imgs/distil5.jpg');
	background-size: cover;
}
#pB4
{
	background-image: url('../imgs/distil1.jpg');
	background-size: cover;
}
#pB5
{
	background-image: url('../imgs/ui1.jpg');
	background-size: cover;
}
#pB6
{
	background-image: url('../imgs/ui2.jpg');
	background-size: cover;
}
#oB1
{
	background-image: url('../imgs/ui2.jpg');
	background-size: cover;
}
#oB2
{
	background-image: url('../imgs/ui2.jpg');
	background-size: cover;
}
#oB3
{
	background-image: url('../imgs/ui2.jpg');
	background-size: cover;
}
#oB4
{
	background-image: url('../imgs/ui2.jpg');
	background-size: cover;
}
#oB5
{
	background-image: url('../imgs/ui2.jpg');
	background-size: cover;
}
#oB6
{
	background-image: url('../imgs/ui2.jpg');
	background-size: cover;
}
#oB7
{
	background-image: url('../imgs/3.jpg');
	background-size: cover;
}
#oB8
{
	background-image: url('../imgs/4.jpg');
	background-size: cover;
}
#oB9
{
	background-image: url('../imgs/bg2.jpg');
	background-size: cover;
}
#oB10
{
	background-image: url('../imgs/bg8.jpg');
	background-size: cover;
}

.overlappB
{
	height: 20vh;
	width: 20vh;
	margin: 2em;
	border-radius: 3em;
	background-color: rgba(256,256,256,0);
	position: absolute;
	top: -100%;
	left: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	transition: 0.5s;
	padding: 0.3em;
}
.capsule:hover> .overlappB
{
	top: 0;
	background-color: rgba(256,256,256,0.9);
}

.overlappB img
{
	width: 4vh;
	height: 4vh;
	align-self: center;
}
.projects-1 li h6
{
	text-align: center;
	position: absolute;
	bottom: 0;
	margin: 0 0.3em;
	font-weight: 200;
	width: 100%;


}

.greenhov
{
	border-bottom:2px solid rgba(255,255,255,0);
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
}
.greenhov:hover
{
	background-color: rgba(210,210,210,0.3) !important;
	border-bottom:2px solid #5BD9B3;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
}
#logoport
{
	height: 100px;
	width: 100px;
	border-radius: 50%;
	position: absolute;
	top: -50px;
	left: 50%;
	margin-left: -50px;
	background-color: #f1f1f1;
	z-index: 10;
	overflow: hidden;
	transition: 1s;
	
}
#logoport:hover
{
	transform: rotateY(180deg) rotateX(360deg) rotateY(180deg);
}
#connect-btn
{
	padding: 0.5em 1em;
	transition: 0.2s;
	border-radius: 1em;
	float: right;
	border: 1px solid #5BD9B3;
}
#connect-btn:hover
{
	background-color: #5BD9B3;
	color: #2C3E50;
}

#logoport img
{
	height: 100%;
	width: 100%;
}

.worktabs
{
	height: 150px;
	width: 20%;
	background-size: cover;
	margin: 2%;
	float: left;
	position: relative;
}
.worktabs a
{
	color: #fff;
	position: absolute;
	top: 20px;
	right: 20px;
	font-weight: 500;
	font-size: 1.5em;
	opacity: 0;
	transition: all 1s;
	-webkit-transition: all 0.3s;
}
.veil
{
	height: 150px;
	width: 50%;
	margin-left: 50%;
	background-color: rgba(256,256,256,0.18);
	transition: all 1s;
	-webkit-transition: all 0.3s;
}
.worktabs:hover .veil
{
	width: 50%;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.34+0,0+100 */
background: -moz-linear-gradient(left,  rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(255,255,255,0.24) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(255,255,255,0.24) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */

	margin-left: 0;
	transition: all 1s;
	-webkit-transition: all 0.2s;
}
.worktabs:hover a
{
	opacity: 1;
	transition: all 1s;
	-webkit-transition: all 0.3s;
}
#vibes
{
	background-image: url('../imgs/3.jpg');
}

#multitude
{
	background-image: url('../imgs/4.jpg');
}
#clouds
{
	background-image: url('../imgs/bg8.jpg');
}

#stockshopp
{
	background-image: url('../imgs/bg2.jpg');
}
/* /////////////////////////////////////////////////////  */
/* ////////////////////// contacts ////////////////////// */
/* /////////////////////////////////////////////////////  */

#contact
{
	height: 400px;
	width: 100%;
	background-image: url('../imgs/bg7.jpg');
	background-position: center;
	background-size: 100% auto;
	background-attachment: fixed;
	margin-top: 1800px;
	position: relative;
}

#contact h2
{
	font-family: 'Raleway', sans-serif;
	font-size: 3em;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 75px;
	left: 50%;
	/* bring your own prefixes */
  	transform: translate(-50%, -50%);
  	-webkit-transform: translate(-50%, -50%);
  	z-index: 20;

}
#contact h2 span
{
	color: #5BD9B3;
}
.shade2
{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#contactcard1
{
	width: 40%;
	height: 275px;
	position: absolute;
	z-index: 10;
	background-color: #fff;
	bottom: -80px;
	left: 10%;
	padding: 6em 4em;
}

#contactcard1 a
{
	width: 100%;
	text-align: right;
	display: block;
	margin: 1em;
}

#contactcard2
{
	width: 40%;
	height: 225px;
	position: absolute;
	z-index: 10;
	background-color: #2C3E50;
	bottom: -80px;
	right: 10%;
	padding: 6em 4em;
	box-sizing: border-box;
}
#contactcard2 a
{
	z-index: 11;
	color: #fff !important;
	vertical-align: middle;
	font-size: 1.2em;
	margin: 0 2em;
}
.const
{
	font-size: 4em;
	text-align: center;
	margin-top: 300px;
	width: 100%;
}
/*
#contactcard2::before,
#contactcard2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-color: transparent;
    border-style: solid;
}


#contactcard2::after {
    border-radius: 0.4em;
    border-width: 1em;
    border-right-color: #0c0;
    border-top-color: #0c0;
} */

/* /////////////////////////////////////////////////////  */
/* ////////////////////// footer ////////////////////// */
/* /////////////////////////////////////////////////////  */

footer
{
	width: 100%;
	height: 150px;
	background-color: #2C3E50;
	bottom: 0;

}





/* /////////////////////////////////////////////////////  */
/* ///////////////// Media Queries ////////////////////// */
/* /////////////////////////////////////////////////////  */




@media screen and (max-width: 40em) {
	body {
		font-size: 80%;
	}
	.codrops-header h1 {
		font-size: 2.5em;
	}
	.codrops-demos {
		max-width: 900px;
		padding: 2em 2em 0;
	}
	.related > a {
		margin: 20px 0;
	}
}

@media screen and (max-width: 25em) {

	.codrops-icon {
		font-size: 250%;
	}

	.codrops-icon span {
		display: none;
	}

}


.particles-js-canvas-el
{
	position: absolute;
	top: 0;
	left: 0;
	 z-index: 1;
}