/*
*
* Mobile and bigger
*
*/

/* Global Definitions Part */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

html {
    min-height: 100%;
    width: 100%;
}

body {
	font-size:12px;
	font-weight:300;
  	overflow: auto;
	color:#000000;
	min-width:auto;
	line-height:1.45;
	min-height: 100%;
}

a:visited {
    text-decoration: none;
}

a:link, a:hover {
    text-decoration: none;
    cursor: pointer;
}


.socialMediaIcons{
    margin-top: 100px;
}

.socialMediaIcons a,
.socialMediaIcons a:link,
.socialMediaIcons a:visited{
    font-size: 27px;
    color: #ffffff;
    margin-right: 20px;
}

.socialMediaIcons a:hover{
    color: #1de0b9;
}

.socialMediaIcons  .text {
    margin-bottom: 10px;
}

a.fa.fa-twitter.fa-4 {
    margin-right: 0px;
}

.clearer {
	clear: both;
}

/* Header Part */
header{
	width: 100%;
    height: 5em;
    position: fixed;
	top: 0;
	left: 0;
	z-index:2000;
	padding: 1em 1em;
	background-color: rgb(253,253,253);
	border-bottom: 1px solid #005858;
}

header{
		background-color: transparent;
		border-bottom: 0;
	}
		header.fadeOut{
			background-color: transparent;
			border-bottom: 0;
    		animation-name: headerFadeOut;
    		animation-duration: 1s;
		}

		header.fadeIn{
			background-color: rgb(253,253,253);
			border-bottom: 1px solid #0C9A8A;
		    animation-name: headerFadeIn;
		    animation-duration: 1s;
		}


		/* CSS ANIMATION For header*/
		@keyframes headerFadeIn {
		    from {background-color: transparent;}
		    to {background-color: rgb(253,253,253);}
		}

		/* CSS ANIMATION For header*/
		@keyframes headerFadeOut {
		    from {background-color: rgb(253,253,253);}
		    to {background-color: transparent;}
		}

		header h1.name {
	    	margin-left: 1.5em;
    		float:left;
			display:none;
    		color: rgb(253,253,253);
    	    font-family: "Roboto", Arial, Helvetica, sans-serif;
    	    font-weight: 400;
    	    font-size: 1.5em;
        	margin-left: 1em;
        	margin-top: 0.4em;
    		text-transform: uppercase;
    		text-decoration: none;
		}


		header div#logo,
		header.fadeOut div#logo{
			float:left;
			display: block;
			background: url(../images/logo_white.svg) no-repeat, linear-gradient(transparent, transparent);
			background-size: contain;
		    background-position: center;
		    width: 6em;
		    height: 3em;
		}

		header.fadeIn div#logo{
			background: url(../images/logo.svg) no-repeat, linear-gradient(transparent, transparent);
		}
	
	h1 {
	    font-size: 1.5em;
	}
	header a#brand {
		text-decoration: none;
	    height: 3em;
    	display: inline-block;
	}

/*Navigation Part*/

#mainNav {
    display: inline-block;
    float:right;
	margin: auto 0;
}

	/* animated menu toggle*/
	.c-hamburger {
	    display: block;
	    position: relative;
	    overflow: hidden;
	    margin: 0;
	    padding: 0;
	    width: 36px;
	    height: 36px;
	    font-size: 0;
	    text-indent: -9999px;
	    -webkit-appearance: none;
	    -moz-appearance: none;
	    appearance: none;
	    box-shadow: none;
	    border-radius: none;
	    border: none;
	    cursor: pointer;
	    -webkit-transition: background .3s;
	    transition: background .3s;
	    z-index: 110;
	}

	.c-hamburger:focus {
	    outline: 0;
	}

	.c-hamburger span {
	    display: block;
	    position: absolute;
	    top: 18px;
	    left: 0px;
	    right: 0px;
	    height: 3px;
	    background-color: white;
	}

	.c-hamburger span::after,
	.c-hamburger span::before {
	    position: absolute;
	    display: block;
	    left: 0;
	    width: 100%;
	    height: 3px;
	    background-color: white;
	    content: "";
	}
	
	
	.fadeIn	.c-hamburger span,
	.fadeIn .c-hamburger span:after,
	.fadeIn .c-hamburger span:before {
	    background-color: #0C9A8A;
	}
	

	.c-hamburger--htla.is-active span::after,
	.c-hamburger--htla.is-active span::before,
	.c-hamburger--htra.is-active span::after,
	.c-hamburger--htra.is-active span::before {
	    width: 50%;
	}

	.c-hamburger span::before {
	    top: -12px;
	}
	
	.c-hamburger span::after {
	    bottom: -12px;
	}

	.c-hamburger--htx {
	    background-color: rgba(249,249,249,0);
	}

	.c-hamburger--htx span {
	    -webkit-transition: background 0s .3s;
	    transition: background 0s .3s;
	}

	.c-hamburger--htx span::after,
	.c-hamburger--htx span::before {
	    -webkit-transition-duration: .3s, .3s;
	    transition-duration: .3s, .3s;
	    -webkit-transition-delay: .3s, 0s;
	    transition-delay: .3s, 0s;
	}

	.c-hamburger--htx span::before {
	    -webkit-transition-property: top, -webkit-transform;
	    transition-property: top, transform;
	}

	.c-hamburger--htx span::after {
	    -webkit-transition-property: bottom, -webkit-transform;
	    transition-property: bottom, transform;
	}

	.c-hamburger--htx.is-active span {
	    background: none;
	}

	.c-hamburger--htx.is-active span::before {
	    top: 0;
	    -webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	    transform: rotate(45deg);
	    background-color: #0C9A8A;
	}

	.c-hamburger--htx.is-active span::after {
	    bottom: 0;
	    -webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	    background-color: #0C9A8A;
	}

	.c-hamburger--htx.is-active span::after,
	.c-hamburger--htx.is-active span::before {
	    -webkit-transition-delay: 0s, .3s;
	    transition-delay: 0s, .3s
	}

	ul.simple-toggle { 
    	margin-top: 0;
		display: none;
	    list-style: none;
	    text-align: center;
	    position: absolute;
	    top: 0;
	    left: 0;
	    z-index: 100;
	    width: 100%;
	    height: auto;
	    min-height: 120em;
	    background-color: rgba(253, 253, 253, 1);
    	padding: 20%;
    	padding-top: 50%;
	}
	
		ul.simple-toggle li a { 
			display: block;
		    text-decoration: none;
		    text-transform: lowercase;
		    font-size: 3.3em;
		    font-weight: 300;
		    color: #5a7077;
		    margin-bottom: 1.4em;
		}

		ul.simple-toggle li a:hover,
		ul.simple-toggle li a.active { 
			color:  #0C9A8A;
		}
	
	#mobile-nav { 
		display:none; 
	}


/* Intro Part */

#backgroundIntroFullScreen {
	position: relative;
	top:0;
	left: 0;
    background: rgb(0,88,88);
	background-image: linear-gradient(to bottom right, rgba(0,88,88,0.8), rgba(0,88,88,0.4)), url(../images/backgrounds/bg_image1_small.jpg);
	background-repeat: no-repeat;
	background-position: center center;
    background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
	#backgroundIntroFullScreen #introPrivacyPolicy,
	#backgroundIntroFullScreen #intro{
	    position: absolute;
	    left: 50%;
	    top: 55%;
	    width: 71%;
	    height: auto;
	    margin: 0 auto;
	    text-align: center;
	    -webkit-transform: translate(-50%, -45%);
	    -moz-transform: translate(-50%, -45%);
	    -ms-transform: translate(-50%, -45%);
	    -o-transform: translate(-50%, -45%);
	    transform: translate(-50%, -45%);
	    text-align: center;
	}

		#backgroundIntroFullScreen h2{
		    position: relative;
		    top: 0.2em;
		    color: rgb(253,253,253);
		    line-height: 1.55;
		    font-weight: 300;
		    /*font-size: 4.3em;*/
    		font-size: 2.7em;
		    /*letter-spacing: 1.8px;*/
		    letter-spacing: 1px;
		    font-style: normal;
		    font-family: "Roboto";
		    text-rendering: optimizeLegibility;
		    -webkit-font-smoothing: antialiased;
		    text-transform: uppercase;
		    margin: 0;
		}

		#backgroundIntroFullScreen div.text{
			position: relative;
		    /*font-size: 1.8em;*/
		    font-size: 1.4em;
		    color: #1de0b9;
		    line-height: 1.55;
		    font-weight: 300;
    		letter-spacing: 0.7px;
		    font-style: normal;
		    font-family: "Roboto";
		    text-rendering: optimizeLegibility;
		    -webkit-font-smoothing: antialiased;
		}

		#backgroundIntroFullScreen span.name{
			color: rgb(253,253,253);
		}


	.buttonDownContainer {
		margin-top: 2em;
	}

	.buttonDownContainer a{
		font-size:8em;
	    color: rgb(249,249,249);
    -moz-transition: all .35s;
    -o-transition: all .35s;
    -ms-transition: all .35s;
    -webkit-transition: all .35s;
    transition: all .35s;
    transition-property: initial;
    transition-duration: 0.35s;
    transition-timing-function: initial;
    transition-delay: initial;
	}

	.buttonDownContainer  a:hover{
	    color: #1de0b9;
	}


/* Content Part */

body section {
    position: relative;
    z-index: 1;
	text-align: center;
    padding: 5em 1em;
    width: 100%;
    background: rgb(253,253,253); /* For browsers that do not support gradients */
	background: -webkit-linear-gradient(bottom, rgb(248,248,248), rgb(253,253,253)); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(bottom, rgb(248,248,248), rgb(253,253,253)); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(bottom, rgb(248,248,248), rgb(253,253,253)); /* For Firefox 3.6 to 15 */
	background: linear-gradient(to bottom, rgb(248,248,248), rgb(253,253,253)); /* Standard syntax */
}

	h3 {
		color: #5a7077;
    	font-size: 4.5em;
	    font-weight: 200;
		text-align: center;
	    text-transform: lowercase;
	}

	h3:after {   
	    content: ''; 
    	display: block;
    	margin: auto;
    	height: 3px;
    	width: 18%;
    	background-color: #0C9A8A;
	}

	h4 {
	    color: #0C9A8A;
		font-size: 2em;
	    font-weight: 400;
	    letter-spacing: 2.1px;
	    text-transform: uppercase;
	    text-rendering: optimizeLegibility;
	    -webkit-font-smoothing: antialiased;
	    font-family: 'Roboto', Arial, Helvetica, sans-serif;
	    line-height: 1;
    	margin-top: 0.5em;
	}



	body section p {
    	font-size: 1.5em;
	    text-rendering: optimizeLegibility;
	    -webkit-font-smoothing: antialiased;
	}

	body section a{
		color: #005858;/*darkcolor*/
	}

	body section .skillEntry{
	    display: block;
	    float: left;
		position: relative;
    	padding: 3em;
	    width: 100%;
	    margin: 0.5em 0;
    	border: 2px solid rgb(232,232,232);
	    -moz-transition: all .5s;
	    -o-transition: all .5s;
	    -ms-transition: all .5s;
	    -webkit-transition: all .5s;
	    transition: all .5s;
	    transition-property: initial;
	    transition-duration: 0.5s;
	    transition-timing-function: initial;
	    transition-delay: initial;
	}	
	

	body section .skillEntry:hover{
    	background-color: #0C9A8A;
    	border: 2px solid #0C9A8A;
    	color: white;
	}

	body section .skillEntry:hover p{
    	color: white;
	}

	body section .skillEntry:hover h4{
    	color: rgb(253, 253, 253);
	}
	body section .skillEntry:hover h4{
    	color: rgb(253, 253, 253);
	}


	body section .workEntry{
		width: 100%;
    	padding-bottom: 7em;
	}
		body section .workEntry a{
			display: block;
    		margin-top: 1em;
		}
		body section .workEntry .image{
			width: 100%;
    		height: 20em;
			overflow:hidden;
		}
			body section .workEntry .image img{
				width: 100%;
			}


/*Contact form*/

input, textarea{
    position: relative;
    line-height: 1.2;
    font-weight: 300;
    font-size: 1.6em;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    color: #0C9A8A;
    z-index: 2;
    width: 100%;
	border: 1px solid #5a7077;
    outline: none;
    margin: 0 0 5% 0;
    padding: 20px;
    background-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
}

input:focus, textarea:focus {
	border: 1px solid #1de0b9;
}

input[type="submit"] {
	float: right;
	padding: 0.4em;
    width: auto;
	border: none;
	cursor:pointer;
	background-color:#5a7077;
	color: rgb(253, 253, 253);
	border-radius: 0.2em;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    -ms-transition: all .35s;
    -webkit-transition: all .35s;
    transition: all .35s;
    transition-property: initial;
    transition-duration: 0.35s;
    transition-timing-function: initial;
    transition-delay: initial;
}

input[type="submit"]:hover {
	background-color:#0C9A8A;

}

#successMessage {
	display:none;
	width: 100%;
    z-index: 20;
    position: relative;
    bottom: 1em;
    padding: 1em;
    background: #0C9A8A;
    border-radius: 0.5em;
    font-size: 1.5em;
    opacity: 0;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    -ms-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
}

#successMessage.fadeIn {
	display:block;
    opacity: 0.7;
}

/* Outro Part */

#backgroundOutro{
	height: 20em;
	position: relative;
	top:0;
	left: 0;
    background: rgb(84,112,119);
	background-image: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
    background: -webkit-linear-gradient(left top, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
    background: -o-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
    background: -moz-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
    background: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
	background-repeat: no-repeat;
	background-position: center center;
    background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

footer {
    position: relative;
    background: rgb(8,12,19);
    color: #5a7077;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding: 3em 1em 5em 1em;
}

	footer  a{
	    color: #5a7077;
    -moz-transition: all 35s;
    -o-transition: all .35s;
    -ms-transition: all .35s;
    -webkit-transition: all .35s;
    transition: all .35s;
    transition-property: initial;
    transition-duration: 0.35s;
    transition-timing-function: initial;
    transition-delay: initial;
	}

	footer  a:hover{
	    color: #0C9A8A;/*brightcolor*/
	}

	footer .arrowUp {
	    font-size: 8em;
	    width: 100%;
	    text-align: center;
	}

	footer #createdBy{
	    color: #5a7077;
    	font-size: 1.1em;
    	font-weight: 400;
    	display: inline-block;
    	padding-top: 3.8em;
    	width: 100%;
    	text-align: center;
	}

	footer #socialMedia {
	    text-align: center;
	}

	footer #socialMedia a{
	    font-size: 3em;
	    margin-right: 1.2em;
	}

	footer #socialMedia a:last-child{
	    margin-right: 0;
	}

/*
*
*	big Mobile
*
*/


@media only screen 
  and (min-device-width: 320px) 
  and (orientation: landscape) {
	ul.simple-toggle {
	    padding-top: 5%;
	}

	h1 {
		display: none;
	}

}


@media only screen and (min-width: 560px) {


		#backgroundIntroFullScreen {
			background-image: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    background: -webkit-linear-gradient(left top, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    background: -o-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    background: -moz-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    background: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    
	        background-size: cover;
		}

		#backgroundOutro{
			background-image: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
		    background: -webkit-linear-gradient(left top, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
		    background: -o-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
		    background: -moz-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
		    background: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
	        background-size: cover;

		}

		#contactName,
		#contactEmail {
			float: left;
			width: 47%;
		}

		#contactName{
			margin-right: 6%;
		}

}

/*
*
*	 Small Tablet
*
*/
@media only screen and (min-width: 600px)  
  and (orientation: portrait) {


	header h1.name {
		float:left;
		display: block;
		color: rgb(253,253,253);
	    font-family: "Roboto", Arial, Helvetica, sans-serif;
	    font-weight: 400;
	    font-size: 1.5em;
    	margin-left: 1em;
    	margin-top: 0.4em;
		text-transform: uppercase;
		text-decoration: none;
	}

	header.fadeIn h1.name {
		color: #5a7077;
	}


		#backgroundIntroFullScreen {
			background-image: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    background: -webkit-linear-gradient(left top, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    background: -o-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    background: -moz-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
		    background: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_middle.jpg);
	        background-size: cover;
		}

		#backgroundOutro{
			background-image: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
		    background: -webkit-linear-gradient(left top, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
		    background: -o-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
		    background: -moz-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);
		    background: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_middle.jpg);

		}

			body section .workEntry .image{
	    		height: 40em;
			}

			#backgroundIntroFullScreen h2{
			    font-size: 4.3em;
			    letter-spacing: 1.8px;
			}

			#backgroundIntroFullScreen div.text{
			    font-size: 1.8em;
			}
}

/*
*
*	 Small Tablet Portrait
*
*/
@media only screen and (min-width: 600px) and (orientation : portrait) {

	#backgroundIntroFullScreen {
		background-image: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    background: -webkit-linear-gradient(left top, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    background: -o-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    background: -moz-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    background: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    
	    background-size: cover;
	}


	#backgroundOutro{
		background-image: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);
	    background: -webkit-linear-gradient(left top, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);
	    background: -o-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);
	    background: -moz-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);
	    background: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);

	}
}

@media only screen and (min-width: 768px) {
	
	body section .skillEntry{
		margin-right: 0;
		width: 47%;
	    float: left;
	    height: 33em;
	}	

	body section .skillEntry:nth-child(2n){
	    margin-right: 6%;
	}	

	body section .workEntry {
		padding: 3em 0;
	}


	body section .workEntry .image{
		width: 47%;
	    margin-right: 6%;
	    float: left;
	    height: 26em;
	}

	body section .workEntry .description{
		float: right;
	    width: 47%;
	    text-align: left;
	}
}

/*
*
*	 Small Tablet
*
*/
@media only screen and (min-width: 814px) {
	
	header{
		padding: 1em 10em;
	}

	header.fadeIn h1.name {
	}

	ul.simple-toggle {
	    position: relative;
	    min-height: 0;
	    padding: 0;
    	margin: 0.4em 0 0 0;
	    display: block;
	}

		ul.simple-toggle li { 
	    	padding-left: 5em;
		    display: inline;
	    	float: left;
		}

		ul.simple-toggle li a { 
    		margin-bottom: 0em;
    		font-size: 1.6em;
			-moz-transition: all .35s;
		    -o-transition: all .35s;
		    -ms-transition: all .35s;
		    -webkit-transition: all .35s;
		    transition: all .35s;
		    transition-property: initial;
		    transition-duration: 0.35s;
		    transition-timing-function: initial;
		    transition-delay: initial;
		    color: rgb(253,253,253);
		}

		header.fadeIn ul.simple-toggle li a { 
		    color: #5a7077;
		}

		ul.simple-toggle li a.active,
		ul.simple-toggle li a:hover {
		    transition: width .5s ease, color .5s ease;
		    color: rgb(253,253,253);
		}

		ul.simple-toggle li a:after {
		    content: '';
		    display: block;
		    margin: auto;
		    height: 1px;
		    width: 0px;
		    background: transparent;
		    transition: width .5s ease, background-color .5s ease;
		}

		ul.simple-toggle li a.active:after,
		ul.simple-toggle li a:hover:after {
		    width: 100%;
		    background-color: #0C9A8A;
		}

	.buttonDownContainer {
		margin-top: 5em;
	}

	body section{
		padding: 5em 10em;
	}

	footer {
	    position: relative;
	    background: rgb(8,12,19);
	    color: #5a7077;
	    text-rendering: optimizeLegibility;
	    -webkit-font-smoothing: antialiased;
	    padding: 3em 10em 5em 10em;
	}
		footer #createdBy{
			width: auto;
    		text-align: left;
    		padding-top: 0.6em;
		}

		footer #socialMedia {
			float: right;
		}

		footer #socialMedia a{
		    margin-left: 1em;
		    margin-right: 0;
		}

		.c-hamburger--htx {
			display:none;
		}
}

/*
*
*	Desktop
*
*/

@media only screen and (min-width: 930px) {
	#backgroundIntroFullScreen {
		background-image: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    background: -webkit-linear-gradient(left top, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    background: -o-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    background: -moz-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    background: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/bg_image1_big.jpg);
	    
	background-size: cover;
	}

	#backgroundOutro{
		background-image: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);
	    background: -webkit-linear-gradient(left top, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);
	    background: -o-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);
	    background: -moz-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);
	    background: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/bg_image2_big.jpg);

	}
}

/*
*
*	Big Desktop
*
*/
@media only screen and (min-width: 1280px) {
    

	header.fadeIn h1.name {
		display: block;
		color: #5a7077;
    		min-width: 300px;
   		margin-top: 5px;
	}
	body section .workEntry .image{
		width: 47%;
	    margin-right: 6%;
	    float: left;
	    height: 41em;
	}
}


/*
*
*	Mega Desktop
*
*/
@media only screen and (min-width: 1921px) {
	#backgroundIntroFullScreen {
		background-image: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/5.jpg);
	    background: -webkit-linear-gradient(left top, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/5.jpg);
	    background: -o-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/5.jpg);
	    background: -moz-linear-gradient(bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/5.jpg);
	    background: linear-gradient(to bottom right, rgba(0,88,88,.9), rgba(0,88,88,.4)), url(../images/backgrounds/5.jpg);
	background-size: cover;
	}


	#backgroundOutro{
		background-image: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
	    background: -webkit-linear-gradient(left top, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
	    background: -o-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
	    background: -moz-linear-gradient(bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);
	    background: linear-gradient(to bottom right, rgba(8,12,19,0.9), rgba(0,0,0,.7)), url(../images/backgrounds/4.jpg);

	}
}

