/*First contentful paint CSS are inlined in index*/


a {
	color: #333;

}
a:hover {
	color: #800080;
}
.row {
	clear: both;
}



/* container variations*/

.head-contact {
	width: 15%;
	float: right;
	text-align: right;
}
.at {
	background-color: #800080;
	color: #fff;
	width: 30px;
	height: 30px;
	padding: 5px;
	float: right;
	text-align: center;
}
.at a {
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.5em;
}
a .at:hover {
	background-color: #a023a0;
}



.what {
	padding-bottom: 100px;
}
/* end of container variations*/




/* WHAT I DO A + MY CV */

.whatido, .mycv {
	background-image: url(../images/dotted-grid.png);
}
.whatido span, .mycv span {
	color: #fff;
}
.whatido h4, .mycv h4 {
	position: relative;
	left:8.25%;
	top:0;
	z-index: 3;
}
.whatido p, .mycv p {
	margin: 10px 0;
}
.mycv a {
	color: #fff;
}
.sticky2 {
	width: 98%;
	padding: 0% 1%;
	max-width: 1200px;
	margin: auto;
}
.whatido-inside, .mycv-inside {
	position: relative;
	left: 16.5%;
	top:-25px;
	width: 68.25%;
	padding:3%;
	background-color: #6bb16b;
	font-size: 1.4em;
	color: #fff;
	z-index: 2;
}
.mycv-bottom {
	width: 41.25%;
	position: relative;
	top: -50px;
	left:55.75%;
	background-color: #800080;
	padding: 2% 1% 1% 1%;
	color: #fff;
	z-index: 1;
	text-align: center;
}
/* EXPERIENCE */

.experience-inside {
	width: 41.75%;
	overflow:hidden;
	margin-left: 8.25%;
	float: left;
	margin-bottom: 50px;
}

.experience h4 {
	font-size: 1.2em;
	background-color: #fff;
	border-bottom: solid 3px #6bb16b;
	padding-bottom: 0;
	margin-bottom: 40px;
}
.experience h3 {
	font-size: 1.2em;
	display: inline-block;
	background-color: #800080;
	padding: 0.5% 1%;
	color: #fff;
}
.experience ul {
	padding: 0;
	list-style-type: none;
	line-height: 1.2em;
}
ul.pluslist li::before {
	font-family: 'Montserrat', sans-serif;
	content: "+";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: #6bb16b; /* Change the color */
	font-weight: 800; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1.2em; /* Also needed for space (tweak if needed) */
	margin-left: -2em; /* Also needed for space (tweak if needed) */
	padding-left: 2em;
	font-size: 1em;
}

.sideprojects {
	width: 45%;
	margin: 1%;
	float: left;
	overflow: hidden;
	border: solid 1px #800080;
	font-size: 0.8em;
}
.sideprojects strong{
	font-size: 1.2em;
	font-family: 'Montserrat', sans-serif;
}
.sideprojects p, .sideprojects strong{
	padding: 3%;
}
.clientes {
	background-color: #fff;
	color:#000;
}
.study {
	width: 25%;
	margin: 4%;
	float: left;
	height: 190px;
	font-size: 0.8em;
}
.desktoppic {
	display: block;
}
.mobilepic {
	display: none;
}

.m2 .freebirdFormviewerViewHeaderHeader {
	border: none;
}







/*! yBox - v1.0 - 2020-08-07
* By Yuval Ashkenazi and Yoav Leshem
* https://github.com/Leshemiko/Ybox */

.yBoxOverlay *{
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
.yBoxOverlay{
	background:rgba(0,0,0,0.8);
	display:flex;
	justify-content:center;
	align-items:center;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:10000;
	visibility:hidden;
	filter:alpha(opacity=0);
	opacity:0;
	-khtml-opacity:0;
	-webkit-transition:all 0.5s ease;
	transition:all 0.5s ease;
}
.yBoxOverlay.active{
	visibility:visible;
	filter:alpha(opacity=100);
	opacity:1;
	-khtml-opacity:1;
}
/* CAJA PRINCIPAL */
.yBoxFrame{
	width:80%;
	max-width: 900px;
	overflow: hidden;
	padding: 1% 1% 4% 1%;
	background-color: #fff;
	color: #000;
}
.yBoxFrame h4 {
	padding: 1%;
	font-size: 1.6em;
	color: #fff;
}
.yBoxFrame p {
	padding: 1%;
}
.yBoxFrame img {
	width: 98%;
	padding: 1%;
}
.yBoxFrame a {
	color: #000;
	text-decoration: underline;
	margin-bottom: 30px;
}
.clientes.yBoxFrame {
	background-color: #fff;
} 
.yBoxOverlay.active .yBoxFrame{
	-webkit-transform:translate(0,0);
	transform:translate(0,0);
}
.closeYbox{
	background:#fff;
	background-size:100% 100%;
	width:35px;
	height:35px;
	position:absolute;
	top:10px;
	right:10px;
	margin:0;
	padding:0;
	border:none;
	outline:none;
	cursor:pointer;
	z-index:3;
}
.closeYbox::before,
.closeYbox::after{
	content:'';
	background-color:#616161;
	width:71%;
	height:2px;
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform:translate(-50%,-50%) rotate(45deg);
	transform:translate(-50%,-50%) rotate(45deg);
	-webkit-transition:all 0.5s ease;
	transition:all 0.5s ease;
	will-change:background-color,transform;
}
.closeYbox::after{
	-webkit-transform:translate(-50%,-50%) rotate(-45deg);
	transform:translate(-50%,-50%) rotate(-45deg);
}
.closeYbox:hover::before{
	background-color:#CC0033;
	-webkit-transform:translate(-50%,-50%) rotate(135deg);
	transform:translate(-50%,-50%) rotate(135deg);
}
.closeYbox:hover::after{
	background-color:#CC0033;
	-webkit-transform:translate(-50%,-50%) rotate(45deg);
	transform:translate(-50%,-50%) rotate(45deg);
}

footer {
	width: 100%;
	overflow: hidden;
	background-color: #800080;
}
.footer-container{
	padding: 1%;
	width: 60%;
	font-size: 0.8em;
	margin: auto;
	text-align:center
}
footer ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
footer ul li {
	float: left;
	margin-right: 15px;
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #f1c8f1;
}

@media (max-width: 900px) {
	.mycv-bottom {
	    width: 59.5%;
	    top: -30px;
	    left: 36.5%;
	    padding: 1%;
	}
	.portfolio-inside {
		width: 100%;
	}
	.portfolio-inside-left, .portfolio-inside-right {
		width: 98%;
		margin: 1%;
		margin-bottom: 40px;
	}
	ul.pluslist {
		margin: 0;
		padding: 0;
		margin-top:20px;
	}
		ul.pluslist li {
		list-style-type: none !important;
		padding-bottom: 10px;
		/*float: left;
		margin-right: 30px;*/
	}

}
@media (max-width: 760px) {
	.yBoxFrame{
		width:88%;
		overflow: hidden;
		padding: 1%;
		background-color: #fff;
		color: #000;
	}
	.whatido {
		margin-top: 50px;
	}
	.whatido-inside {
		padding-top: 8%;
	}
	.experience-inside {
		margin: 15px 7.25% 0px 1%;
		width: 98%;
	}
	.mycv h4 {
		left: 0;
		font-size: 1.5em
	}
	.mycv-inside {
		left: 8%;
		width: 76.25%;
		padding-top:6%;
	}
	.pluslist {
		font-size: 0.9em;
	}
	.experience h3 {
		margin-top: 80px;
	}
	
}
@media (max-width: 600px) {
	.container {
		width: 96%;
		padding-left: 2%;
		padding-right: 2%;
	}
	h2, h1 {
		font-size: 1.6em;
	}
	.head-logo h2 {
		font-size: 1.7em;
	}
	.mypic {
		min-width: 50%;
	}
	.mainmessage-inside {
		left: 10%;
		width: 88%;
		top:-50px;

	}
	.mainmessage-inside p {
		font-size: 1.2em;
		margin-top: 0;
		padding-right: 3%;
	}
	.whatido-inside, .mycv-inside {
		font-size: 1.1em;
	}
	.mycv-bottom {
	    width: 97%;
	    top: -20px;
	    left: 1%;
	    padding: 1%;
	    font-size: 0.8em;
	}
	.desktoppic {
		display: none;
	}
	.mobilepic {
		display: block;
	}
	.footer-container{
		padding: 1%;
		width: 98%;
		font-size: 0.8em;
		margin: auto;
	}
	
}