/* General Blueprint Style */
@font-face {
	font-family: 'bpicons';
	src:url('../fonts/bpicons/bpicons.eot');
	src:url('../fonts/bpicons/bpicons.eot?#iefix') format('embedded-opentype'),
		url('../fonts/bpicons/bpicons.woff') format('woff'),
		url('../fonts/bpicons/bpicons.ttf') format('truetype'),
		url('../fonts/bpicons/bpicons.svg#bpicons') format('svg');
	font-weight: normal;
	font-style: normal;
} /* Made with http://icomoon.io/ */

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body, html { font-size: 100%; padding: 0; margin: 0;}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }

body {
	font-family: 'Lato', Calibri, Arial, sans-serif;
	color: #fafafa;
	background: #333;
}

a {
	color: #ccc;
	text-decoration: none;
}

a:hover {
	color: #61c6ad;
}

.bp-icon-next:after {
	content: "\e000";
}
.bp-icon-drop:after {
	content: "\e001";
}
.bp-icon-archive:after {
	content: "\e002";
}
.bp-icon-about:after {
	content: "\e003";
}
.bp-icon-prev:after {
	content: "\e004";
}

html, body, 
.container {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	overflow-y: scroll;
	background: #091b35;
}

.splitlayout {
	position: relative;
	overflow-x: hidden;
	min-height: 100%;
	width: 100%;
}

.topbar, .vertical-nav {
	z-index: 205;
}

.topbar {
	position: absolute;
	top: 2.25rem;
	left: 2.5rem;
	font-size: 1.25rem;
	font-weight: 300;
	color: #fafafa;
}

.topbar span.slogan {
	display: block; /* :P */
	font-weight: 100;
}

.vertical-nav {
	position: absolute;
	top: 2.25rem;
	right: 2.5rem;
	font-size: 1rem;
	font-weight: 100;
	color: #fafafa;
	height: 4rem;
	cursor: pointer;
	line-height: 1.45rem;
}

.vertical-nav a {
	display: block;
	text-align: right;
}

.vertical-nav a:hover {
	cursor: pointer;
}

.vertical-nav a .cuchuflito {
	visibility: hidden;
	font-size: 0.8em;
	font-weight: 300;
	position: absolute;
	padding-left: 0.25em;
}

.vertical-nav a:hover .cuchuflito {
	visibility: visible;
}

/* Intro sides */
.side {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 50%;
	height: 100%;
	text-align: center;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

.open-left .side,
.open-right .side {
	cursor: default;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 499;
	visibility: hidden;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.side-left .overlay {
	background: rgba(0,0,0,0.7);
}

.side-right .overlay {
	background: rgba(0,0,0,0.3);
}

.side-left {
	left: 0;
}

.side-right {
	right: 0;
}

/* Intro content, profile image and name, back button */
.intro-content {
	position: relative;
	top: 18%;
	/* left: 50%; */
	padding: 0;
	width: 65%;
	cursor: pointer;
	/* -webkit-transform: translateY(-50%) translateX(-50%); */
	/* transform: translateY(-50%) translateX(-50%);*/
}

.profile {
	margin: 0;
}

.profile img {
	max-width: 100%;
}

.intro-content h1 {display: none;}

.back {
	position: fixed;
	top: 2.6em;
	z-index: 500;
	display: block;
	visibility: hidden;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	font-size: 22px;
	line-height: 44px;
	opacity: 0;
	pointer-events: none;
}

.mobile-layout .back { /* fixed positioning will make this not clickable after scrolling on some mobile devices */
	position: absolute;
}

.back-left:not(.js-toplogo) {
	left: 3.35rem;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.back-right:not(.js-toplogo) {
	right: 3.35rem;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	color: #fff;
}

.vertical-nav .back-left,
.vertical-nav .back-right {
	right: initial;
	left: initial;
	-webkit-transform: initial;
	transform: initial;
	color: #ccc;
}

.vertical-nav .back-left:hover,
.vertical-nav .back-right:hover {
	color: #61c6ad;
}

.open-right .back-left,
.open-left .back-right {
	top: 7rem;
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	pointer-events: auto;
}

.back:hover {
	color: #ddd;
}

/* Pages */
.page {
	position: relative;
	top: 0;
	overflow: auto;
	min-height: 100%;
	width: 100%;
	height: auto;
	font-size: 1.4em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-image: url(../assets/clouds-bg.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: 5% 5%;
}

.page-right {
	left: 0;
	color: #fff;
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

.splitlayout.open-right {
	background: #11223b; /*34495e;*/
}

.page-left {
	left: 0;
	color: #fff;
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

.splitlayout.open-left {
	background: #11223b;
}

/* Inner page content */
.page-inner {
	padding: 6em 4em 0em 4em;
	max-width: 1500px; /* @Juanma Arbitrary break for aesthetics */
	margin: 0 auto;
}

.page-left .page-inner {
	padding-top: 0;
}

.page-inner section {
	margin-bottom: 15em;
	display: block;
}

.page-inner h2 {
	margin: 0 0 1em 0;
	font-weight: 300;
	font-size: 2.4em;
}

.page-inner p {
	font-weight: 300;
	font-size: 1.2em;
}

section.presentation {
	min-height: 100vh;
}

.presentation .cover-left {
	margin: 4rem 0 0 13.4vw;
	width: 28.9vw;
	float: left;
}

.presentation .cover-right {
	margin: 6rem 0 0 5rem;
	width: 26rem;
	display: inline-block;
}

.presentation .cover-title {
	font-weight: 200;
	text-transform: uppercase;
	font-size: 9rem;
	line-height: 7rem;
}

.presentation .cover-title span {
	font-weight: 300;
	font-size: 8.2rem;
}

.presentation .cover-subtitle {
	display: block;
	margin: 1rem 0.8rem 0;
	font-weight: 200;
	text-align: right;
}

.cover-right h3 {
	font-weight: 300;
	font-size: 2rem;
	margin: 0;
	padding: 0;
}

.cover-right p {
	font-weight: 100;
	margin: 0;
	padding: 0 0 2rem;
}

.presentation .scroll-indicator {
	text-align: center;
	margin-top: 9rem;
	font-weight: 100;
	text-transform: uppercase;
	font-size: 1.25rem;
}

img.doodles {
	top: 11rem;
	width: 34rem;
	position: absolute;
	left: 40rem;
}

.presentation {
	position: relative;
	padding-top: 9rem;
	background-color: transparent;
	background-image: url(../assets/doodles-bg.gif);
	background-repeat: no-repeat;
	background-size: auto 84vh;
	background-position: center;
}

.page-inner section.presentation {
	margin-bottom: 5em;
}
.page section .cover-phrase {
	font-size: 3rem;
	font-weight: 100;
	width: 76vw;
	text-align: center;
	margin: 10rem auto 0;
}

.page-right .presentation-alt .alexa-cover-wrapper-left {
	margin: 6.5rem 0 0 5rem;
	float: left;
}

.page-right .alexa-cover-wrapper-left .alexa-heading {
	display: block;
	font-weight: 100;
	font-size: 3.5rem;
	text-transform: uppercase;
	padding-bottom: 1rem;
	text-align: left;
	line-height: 3.7rem;
}

.page-right .alexa-cover-wrapper-left .alexa-heading span {
	display: inline-block;
	font-weight: 300;
	font-size: 1.12em;
	text-indent: -0.3rem;
}

.page-right .alexa-cover-wrapper-left .cover-phrase {
	margin: 0;
	text-align: left;
	font-size: 2rem;
	display: inline-block;
	width: 35rem;
}

img#chevron {
	width: 10rem;
	display: block;
	margin: 5rem auto;
}

.page-right img#chevron {
	margin-top: 1rem;
}

.page-right section .alexa-skills-wrapper {
	width: 32rem;
	display: inline-block;
	margin: 1.8rem 0 0 1rem;
}

.page-right section .alexa-skills-wrapper .skill {
	display: none;
	width: 6rem;
	margin: 1rem 0.6rem;
}

img#skill-001 {
	margin: 1rem 0.6rem 0.1rem 1.3rem;
}

img#skill-002, img#skill-003 {
	margin: 0 0.6rem 1.4rem;
}

img#skill-004 {
	margin: 1rem 0 0.1rem 0.6rem;
}

.page-right section .alexa-skills-wrapper .alexa-speaker {
	width: 100%;
	height: auto;
}

/* All transitions */
.side,
.page {
	-webkit-transition: -webkit-transform 0.6s;
			transition: transform 0.6s;
}

.overlay {
	-webkit-transition: opacity 0.6s, visibility 0.1s 0.6s;
			transition: opacity 0.6s, visibility 0.1s 0.6s;
}

.intro-content {
	-webkit-transition: -webkit-transform 0.6s, top 0.6s;
			transition: transform 0.6s, top 0.6s;
}

.intro-content h1,
.back {
	-webkit-transition: opacity 0.3s;
			transition: opacity 0.3s;
}

/* Open and close */

/* We need to set the position and overflow for the respective page scroll */
.reset-layout .page,
.splitlayout.open-right .page-left,
.splitlayout.open-left .page-right,
.splitlayout.close-right .page-left,
.splitlayout.close-left .page-right {
	position: absolute;
	overflow: hidden;
	height: 100%;
}

.splitlayout.open-right .page-right,
.splitlayout.open-left .page-left {
	position: relative;
	overflow: auto;
	height: 100vh;
	z-index: 201;
}

.open-right .side-left .overlay,
.open-left .side-right .overlay {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

/* Right side open */
.open-right .side-left {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.open-right .side-right {
	z-index: 200;
}

.close-right .side-right {
	z-index: 200;
}

.open-right .side-right .intro-content {
	display: none;
}

body.services-opened .side-left .intro-content {
	-webkit-animation: slide-fwd-right 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
			animation: slide-fwd-right 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

body.services-opened .side-right .intro-content {
	-webkit-animation: slide-fwd-left 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
			animation: slide-fwd-left 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

body.services-opened .intro .side-left .section-title, body.services-opened .intro .side-right .section-title {
	display: block !important;
}

.open-right .page-right {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

/* Left side open */
.open-left .side-right {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.open-left .side-left {
	z-index: 200;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

.close-left .side-left {
	z-index: 200;
}

.open-left .side-left .intro-content {
	display: none;
}

.open-left .page-left {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}



/* JUANMA EDITS */
.side-left .intro-content {
	display: block;
	float: left;
	left: -0.6rem; /* Porque quedaba mejor recortadito el dibujo */
}

.side-right .intro-content {
	display: block;
	float: right;
	width: 66%;
	top: 20%; /* Agrando el dibujo para que quede más equilibrado */
}

.intro .side-left .section-title,
.intro .side-right .section-title {
	width: 300px; /* 18.8rem */
	height: auto;
	left: 12.5vw;
	top: 54.5vh;
	position: absolute;
}


.intro .side-right .section-title {
	left: 120px;
}

#parallaxbg {
	position: relative;
	width: 100vw;
	height: 100vh;
	background-image: url(../assets/stars-gif-2.gif), url(../assets/clouds-bg.jpg);
	background-repeat: no-repeat;
	background-size: 130vw 130vh, 130vw 130vh;
	background-position: 5% 5%, 5% 5%;
}

#parallaxcopy {
	position: absolute;
	width: 100vw;
	height: 100vh;
	background-image: url(../assets/copy-bg.png);
	background-repeat: no-repeat;
	background-size: auto 84vh;
	background-position: 50%;
}

body.services-opened #parallaxcopy {
	-webkit-animation: fade-out 1s ease-out both;
			animation: fade-out 1s ease-out both;
}

.intro .section-title {
	display: none;
}


/* ***************** PORTFOLIOS ***************** */


.portfolio-wrapper-copy {
	width: 40rem;
	display: inline-block;
}

.portfolio-right .portfolio-wrapper-copy {
	margin-left: 3rem;
	margin-right: 0;
}
.portfolio-left .portfolio-wrapper-copy {
	margin-right: 3rem;
	margin-left: 0;
	text-align: right;
}


.portfolio-image {
	max-width: 24rem;
	max-height: 24rem;
	margin: 0 6rem;
}

.portfolio-right .portfolio-image {
	float: right;
	margin-left: 1rem;
}

.portfolio-left .portfolio-image {
	float: left;
	margin-right: 1rem;
}

.portfolio-title {
	font-weight: 300;
	text-transform: uppercase;
	font-size: 3.5rem;
	line-height: 3.5rem;
}

p.portfolio-description {
	font-size: 1.4rem;
	font-weight: 100;
}

.portfolio-pretitle {
	display: block;
	padding-bottom: 0.4rem;
	margin-left: 0.5rem;
	font-size: 1.2rem;
	font-weight: 100;
	text-transform: uppercase;
}

.portfolio-pretitle span {
	display: block;
	margin-left: 2rem;
}



/* MODAL ***************************/

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 900; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content/Box */
#contact-parallax {
	background-image: url(../assets/contact-bg.gif), url(../assets/clouds-bg.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: auto 110%, 130vw 130vh;
	background-position: 5% 5%, center;
	background-color: #11223b;
	margin: 0;
	padding: 20px;
	border: 0 none;
	width: 100vw;
	height: 100vh;
}

#about-parallax {
	background-image: url(../assets/clouds-bg.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 130vw 130vh;
	background-position: center;
	background-color: #11223b;
	margin: 0;
	padding: 20px;
	border: 0 none;
	width: 100vw;
	height: 100vh;
}

/* The Close Button */
#close-modal, #close-modal2 {
	color: #fafafa;
	float: right;
	font-size: 2rem;
	font-weight: 300;
}

#close-modal:hover,
#close-modal:focus,
#close-modal2:hover,
#close-modal2:focus {
	color: #61c6ad;
	text-decoration: none;
	cursor: pointer;
}

/* Ends MODAL ***************************/




/* ----------------------------------------------
 * Generated by Animista on 2020-10-1 0:7:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-out
 * ----------------------------------------
 */
@-webkit-keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/**
 * ----------------------------------------
 * animation slide-fwd-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-fwd-right {
	0% {
		-webkit-transform: translateZ(0) translateX(0);
				transform: translateZ(0) translateX(0);
	}
	100% {
		-webkit-transform: translateZ(160px) translateX(100px);
				transform: translateZ(160px) translateX(100px);
	}
}
@keyframes slide-fwd-right {
	0% {
		-webkit-transform: translateZ(0) translateX(0);
				transform: translateZ(0) translateX(0);
	}
	100% {
		-webkit-transform: translateZ(160px) translateX(100px);
				transform: translateZ(160px) translateX(100px);
	}
}

/**
 * ----------------------------------------
 * animation slide-fwd-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-fwd-left {
	0% {
		-webkit-transform: translateZ(0) translateX(0);
				transform: translateZ(0) translateX(0);
	}
	100% {
		-webkit-transform: translateZ(160px) translateX(-100px);
				transform: translateZ(160px) translateX(-100px);
	}
}
@keyframes slide-fwd-left {
	0% {
		-webkit-transform: translateZ(0) translateX(0);
				transform: translateZ(0) translateX(0);
	}
	100% {
		-webkit-transform: translateZ(160px) translateX(-100px);
				transform: translateZ(160px) translateX(-100px);
	}
}

.pulsate-fwd {
	-webkit-animation: pulsate-fwd 1s ease-in-out infinite both;
			animation: pulsate-fwd 1s ease-in-out infinite both;
}

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
	0% {
		-webkit-transform: scale(1);
				transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
				transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
				transform: scale(1);
	}
}
@keyframes pulsate-fwd {
	0% {
		-webkit-transform: scale(1);
				transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
				transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
				transform: scale(1);
	}
}


/* AUDIO PLAYER */
#audioplayer {
	position: fixed;
	z-index: 999999999;
	left: calc(50% - 8rem);
	top: 0;
	background-color: #091b35;
	font-weight: 100;
	font-size: 1rem;
	width: 17rem;
	border-radius: 0 0 0.5rem 0.5rem;
	padding: 0.8rem 0.5rem 0.8rem 0.8rem;
	box-shadow: 0 0 12px rgb(12 12 12);
	border: 1px solid #5fc1af14;
}

div#audioplayer.minimized {
	height: 2rem;
	width: 4rem;
	padding-bottom: 1.5rem;
}

div#audioplayer.minimized .headphones.hidden {
	display: inline;
	color: #5fc1af;
}

div#audioplayer.minimized .hidden-on-closed-drawer {
	display: none;
}

.track-select {
	color: #d2f7f4;
}

.track-select.selected {
	color: #5fc1af;
}

.dummy-spectrum {
	width: 1rem;
	height: auto;
}

.dummy-spectrum.hidden, .drawer.hidden, .headphones.hidden {
	display: none;
}

.drawer {
	margin-right: 0.5em;
}

/* style for the progress bar */
#progress-bar {
	-webkit-appearance: none;
	appearance: none;
	height: 0.1rem;
	background: #5fc1af;
	width: 9.8rem;
	border-radius: 0;
	vertical-align: middle;
}

/* style for the progress bar's slider thumb */
#progress-bar::-webkit-slider-thumb {
	-webkit-appearance: none;
	margin-top: -3px;
	margin-left: 0px;
	height: 10px;
	width: 7px;
	border: 0;
	background: -webkit-linear-gradient(45deg,  #fafafa, #3cb2c4);
	border-radius: 30px;
	cursor: pointer;
}

/* style for the progress bar's runnable track */
#progress-bar::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	max-height: 5px;
	border-radius: 30px;
}

/* style to remove blue shade of the progress bar when clicked on/selected */
#progress-bar:focus {
	outline: none;
}

/* https://stackoverflow.com/questions/21233033/how-can-i-create-a-marquee-effect */

.marquee {
	display: inline-block;
	width: 8.5rem;
	margin: 0 auto;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;
	vertical-align: bottom;
	color: #d2f7f4;
	/* background-color: lightcoral; */
}

.marquee span {
	display: inline-block;
	padding-left: 100%;
	/* show the marquee just outside the parent */
	will-change: transform;
	animation: marquee 12s linear infinite;
	animation-delay: -4.5ms;
}

.marquee span:hover {
	animation-play-state: paused
}

.player-block .fa {
	text-shadow: 0 0 9px rgb(219 222 225 / 45%);
}

.fa-step-backward {
	margin: 0.2rem 0.5rem 0 0;
}

.fa-play, .fa-pause {
	margin: 0.2rem 0.5rem 0 0;
	width: 0.75rem;
}

.fa-step-forward {
	margin: 0.2rem 0.3rem 0 0;
}

.fa-list {
	margin: 0.2rem 0 0;
}

.drawer:hover,
.fa-step-backward:hover,
.fa-play:hover,
.fa-pause:hover,
.fa-step-forward:hover,
.track-select:hover,
.fa-list:hover {
	cursor: pointer;
}

.durationTime, .currentTime {
	font-size: 0.7rem;
	color: #fafafa;
	font-weight: 300;
}

.playlist {
	padding: 0.8rem 0 0;
}

.playlist.hidden {
	display: none;
}

@keyframes marquee {
	0% { transform: translate(0, 0); }
	100% { transform: translate(-100%, 0); }
}

.slide-out-top {
	-webkit-animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
			animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/**
 * ----------------------------------------
 * animation slide-out-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-out-top {
	0% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-1000px);
				transform: translateY(-1000px);
		opacity: 0;
	}
}
@keyframes slide-out-top {
	0% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-1000px);
				transform: translateY(-1000px);
		opacity: 0;
	}
}

.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
			animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
	0% {
		-webkit-transform: translateY(-1000px);
				transform: translateY(-1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		opacity: 1;
	}
}
@keyframes slide-in-top {
	0% {
		-webkit-transform: translateY(-1000px);
				transform: translateY(-1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		opacity: 1;
	}
}

#about-parallax .modal-inner-content {
	display: block;
	width: 70vw;
	margin: 0 auto;
	text-align: center;
}

#about-parallax .text-wrapper {
	display: block;
	width: 70%;
	margin: 2.5rem auto 1.8rem;
}

img.about-image.team {
	width: 40vw;
	height: auto;
}

#contact-parallax .modal-inner-content {
	display: flex;
	align-items: center;
	height: 80vh;
}

#contact-parallax .text-wrapper {
	margin-left: 46vw;
	width: 50vw;
	display: inline-block;
}

#contact-parallax p.portfolio-title {
	font-size: 7.5rem;
	line-height: 7rem;
	margin-bottom: 3rem;
}

p.portfolio-description a {
	color: #61c6ad;
}

p.portfolio-description a:hover {
	border-bottom: 1px solid #61c6ad;
}

p.portfolio-description.smaller a:hover {
	border-bottom: 0 none;
}

#contact-parallax p.portfolio-description {
	margin-left: 5rem;
}

#contact-parallax i.fa {
	margin-right: 0.3rem;
	vertical-align: middle;
}

.about-logo {
	width: 11rem;
}

p.portfolio-description {
	font-size: 1.2rem;
}

p.portfolio-description.small {
	font-size: 1.05rem;
}

p.portfolio-description.smaller {
	font-size: 0.8rem;
}

.page-inner .track-select,
.portfolio-link a {
	color: #d2f7f4;
	font-weight: 300;
	font-size: 1.25rem;
}

.page-inner .track-select:hover,
.portfolio-link a:hover {
	color: #61c6ad;
}

.page-inner .track-select .fa-play-circle,
.portfolio-link a i {
	margin-right: 0.2rem;
}

p {
	display: block;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}

.page-inner p.ruler {
	margin: 1.5rem 0 0.3rem;
}

a#logo_btn {
    display: inline-block;
    width: auto;
}

.topbar img.about-logo.only-desktop {
    width: auto;
    height: 2.8rem;
    float: left;
    padding-top: 0.2rem;
    margin-right: 0.5rem;
}


/************************************************************************/
/************************************************************************/
/************************************************************************/
/************************************************************************/



/* ------------------------------------ */
/* ---------- MOBILE LAST :P ---------- */
/* ------------------------------------ */

/* @media (max-width: 992px) {} */

.only-mobile { display: none !important; }

/* Media Queries */
@media (max-width: 1200px) {

	html body#parallaxbg {
		height: auto;
		overflow-y: scroll;
		overflow-x: hidden;
		position: relative;
		background-size: 100% 40%, 50% 0%;
		background-attachment: fixed;
		background-repeat: repeat;	
	}

	.only-mobile { display: block !important; }
	.only-desktop { display: none !important; }

	p br { display: none; }

	.topbar {
		font-size: 1.25rem;
	}

	.topbar span {
		font-size: 1rem;
		font-weight: 300;
        display: block !important;
        opacity: 1 !important;
	}

    .topbar span.slogan {
        display: none !important;
    }

	div#audioplayer i.drawer, div#audioplayer.minimized .headphones.hidden {
		display: none;
	}

	div#audioplayer.minimized .hidden-on-closed-drawer {
		display: block;
	}

	div#audioplayer,
	div#audioplayer.minimized {
		text-align: center;
		padding-bottom: 0.8rem;
		left: 0;
		margin: 0;
    	width: 100vw;
		bottom: 0;
		top: auto;
		min-height: 4rem;
		height: auto;
		font-weight: 300;
	}

	div#parallaxcopy {
		background-size: 70% auto;
		background-position: 50% 30%;
	}

	#progress-bar {
		width: 70%;
	}

	.marquee {
		width: 60%;
	}

	.playlist {
		padding: 0.8rem 0 0;
		text-align: left;
		width: 85%;
		margin: 0 auto;
	}

	.only-mobile img.mobile-services {
		width: 70vw;
		height: auto;
		margin: 3rem auto;
	}

	.only-mobile img.mobile-services-games {
		margin-top: 63vh;
	}

	.only-mobile img.mobile-services-alexa {
		margin-bottom: 17vh;
	}

	.side {
		position: relative;
		display: inline-block;
		width: 45%;
	}

	#splitlayout .intro-content {
		width: 90%;
		margin-top: 60vh;
		/* @Juanma To prevent audio player from overlapping in very small landscape mobiles */
    	margin-bottom: 30vh;
	}

	.side-left {
		margin-left: 1rem;
	}

	#about-parallax {
		height: auto;
	}	

	#about-parallax .text-wrapper {
		width: 100%;
		margin: 1rem auto;
	}

	p.portfolio-description {
		font-size: 1rem;
		font-weight: 300;
	}

	img.about-image.team {
		width: 100%;
	}

	#about-parallax p.portfolio-description.smaller {
		margin-bottom: 5rem;
	}

	span#close-modal,
	span#close-modal2 {
		position: fixed;
		right: 1.5rem;
		top: 1rem;
		z-index: 9999;
	}

	/* .about-logo {
		width: 8rem;
	} */


	#contact-parallax {
		background-size: cover, cover;
		background-position: 36% 0, center;
		width: 100%;
		height: 100%;
	}

	#contact-parallax .text-wrapper {
		margin-left: auto;
		width: 90%;
		display: block;
	}

	#contact-parallax p.portfolio-title {
		font-size: 2.5rem;
		line-height: 3rem;
		margin-bottom: 0;
	}

	#contact-parallax p.portfolio-description {
		margin-left: auto;
		font-weight: 300;
		font-size: 140%;
		line-height: 100%;
	}

	#contact-parallax .modal-inner-content {
		background-color: #1929427d;
		border-radius: 6rem;
	}

	.splitlayout.open-right .page-right,
	.splitlayout.open-left .page-left {
		position: absolute;
		top: 0;
		width: 100%;
	}

	.page-inner {
		max-width: 100%;
		width: 100%;
		padding: 0;
    	margin: 0 auto;
	}

	.presentation .cover-left,
	.presentation .cover-right {
		margin: 0;
		width: 100%;
		float: none;
	}

	.presentation .cover-title {
		font-weight: 200;
		text-transform: uppercase;
		font-size: 6rem;
		line-height: 5rem;
		margin: 0 auto;
		width: 80%;
	}

	.presentation .cover-title span {
		font-weight: 300;
		font-size: 5.5rem;
	}

	.presentation .cover-subtitle {
		display: block;
		margin: 1rem auto 2rem;
		font-weight: 300;
		text-align: left;
		width: 80%;
	}

	.cover-right h3 {
		padding: 0;
    	width: 80%;
		margin: 0 auto;
		font-weight: 400;
	}

	.cover-right p {
		margin: 0 auto;
		padding: 0 0 2rem;
		width: 80%;
		font-weight: 300;
	}

	.mobile-topbar-bg.only-mobile {
		background-color: #091b35;
		width: 100%;
		height: 6rem;
		position: absolute;
		z-index: 205;
	}

	.portfolio-right .portfolio-image,
	.portfolio-left .portfolio-image {
		float: none;
		width: 80%;
		margin: 0 auto;
		display: block;
	}

	.portfolio-pretitle {
		margin-left: 3rem;
		font-weight: 300;
	}

	.portfolio-wrapper-copy {
		width: 90%;
		margin: 0 auto;
		font-weight: 300;
	}

	.portfolio-title {
		font-size: 2.5rem;
		line-height: 2.5rem;
		margin: 0.5rem 0;
	}

	p.ruler {
		font-size: 1.5rem;
	}

	.page-inner section {
		margin-bottom: 4em;
	}

	.page-inner .track-select, .portfolio-link a {
		font-size: 1rem;
	}

	.portfolio-left .portfolio-wrapper-copy,
	.portfolio-right .portfolio-wrapper-copy {
		margin-left: 0;
    	padding-left: 2rem;
	}

	.portfolio-left .portfolio-wrapper-copy {
		text-align: left;
	}

	.presentation {
		background-size: 96% auto;
		background-position: 0 17%;
	}

	.page-right .presentation-alt .alexa-cover-wrapper-left {
		margin: 9.5rem 0 0 3rem;
		float: none;
		width: 100%;
	}

	.page-right .alexa-cover-wrapper-left .alexa-heading {
		display: block;
		font-size: 3rem;
		line-height: 3.7rem;
	}

	.page-right .alexa-cover-wrapper-left .cover-phrase {
		margin: 0;
		text-align: left;
		font-size: 2rem;
		display: inline-block;
		width: 80%;
		font-weight: 300;
	}

	.page-right section .alexa-skills-wrapper {
		width: 90%;
	}

	.page-right section .alexa-skills-wrapper .skill {
		display: none;
		width: 4rem;
	}

	img#skill-001,
	img#skill-004 {
		margin: 0 0 0 0.5rem;
	}

	#audioplayer {
		font-size: 1rem;
	}

	.page {
		background-image: url(../assets/clouds-bg.jpg);
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-size: cover;
		background-position: 0 0;
	}

	html body#parallaxbg {
		background-image: url(../assets/clouds-bg.jpg);
		background-size: cover;
		background-position: 0 0;
	}

	#contact-parallax {
		background-image: url(../assets/contact-bg.gif);
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-size: auto 110%;
		background-position: 40% 5%;
	}

	#about-parallax {
		background-image: url(../assets/clouds-bg.jpg);
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-size: cover;
		background-position: 0 0;
	}

	#about-parallax p.portfolio-description {
		font-size: 120%;
		font-weight: 300;
	}

	.vertical-nav {
		font-weight: 300;
	}




}