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

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@200;700&display=swap');


/*----Root CSS----*/

:root {

	--ff: 'Lato', sans-serif;
	--ff-services: 'Lobster', cursive;
	--ff-legalesph: 'Sarabun', sans-serif;

	--fw-l: 300;
	--fw-r: 400;
	--fw-b: 700;

	--fs-serv: 3.2rem;
	--fs-big: 3rem;
	--fs-med: 2rem;
	--fs-ptxt: 1.5rem;
	--fs-p: 1.2rem;

	--drk-bg-clr: #212020;
	--gray-bg-clr: #F0F0F0;
	--tlnt-bg-clr: #F5F3F2;
	--dark-clr: #505050;
	--light-clr: #E5E5E5;
	--gray-menu-clr: #CECECE;

}


/*----Main CSS----*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body, html {
	font-family: var(--ff);
	font-weight: var(--fw-l);
}

main {
	max-width: 1920px;
	margin: 0 auto;
}

a {
	text-decoration: none;
}

section {
	padding: 5em 5%;
}

h1 {
	text-transform: uppercase;
}

h2 {
	font-size: var(--fs-med);
	text-transform: uppercase;
	font-weight: var(--fw-r);
	margin-bottom: 1em;
}
h3 {
	font-size: var(--fs-ptxt);
	font-weight: var(--fw-r);
	text-transform: uppercase;
	margin-top: 1.5em;
}
h4 {
	font-size: var(--fs-ptxt);
	font-weight: var(--fw-l);
	margin-top: 1.5em;
}
p, span {
	font-weight: var(--fw-l);
	font-size: var(--fs-p);
}
p{
	padding: 1em 0;
	line-height: 1.4em;
}

.dark-bg {
	background-color: var(--drk-bg-clr);
	color: var(--light-clr);
}

.light-bg {
	background-color: #fff;
	color: var(--dark-clr);
}
.sect-space {
	padding: 5em 5%;
}
	



/*---- REDES ----*/

.redes-sociales {
	position: fixed;
	top: 40%;
	-webkit-transform: translateY(-40%);
	-moz-transform: translateY(-40%);
	-ms-transform: translateY(-40%);
	transform: translateY(-40%);
	z-index: 600;
	background-color: rgba(0,0,0,0.7);
}

.redes-sociales ul {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
}

.redes-sociales ul li {
	list-style: none;
}

.redes-sociales ul li a {
	width: 40px;
	height: 40px;
	display: block;
	text-align: center;
	font-size: 1.5rem;
	line-height: 40px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.redes-sociales ul li a .icon {
	position: relative;
	color: var(--light-clr);
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	transition: all ease 0.5s;
	z-index: 3;
}
.redes-sociales ul li a:hover .icon {
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.redes-sociales ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: .5s;
  z-index: 2;
}
.redes-sociales ul li a:hover:before {
	right: 0;
}
.redes-sociales ul li:nth-child(1) a:before{
  background: #3b5999;
}
.redes-sociales ul li:nth-child(2) a:before{
  background: #55acee;
}
.redes-sociales ul li:nth-child(3) a:before{
  background: #F00075;
}
.redes-sociales ul li:nth-child(4) a:before{
  background: #0073b1;
}
.redes-sociales ul li:nth-child(5) a:before{
  background: #25D366;
}




/*---- NAVIGATION ----*/

header {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 1920px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 2em;
	z-index: 700;
}
header.scrolled {
	background: rgba(20,20,20,.70);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.j-logo {
	background-color: #000;
	width: 70px;
	height: 70px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}
.j-logo a {
	width: 100%;
	height: auto;
	display: block;
	padding: 0.3em;
}
.menu {
	display: flex;
	align-items: center;
	position: relative;
}
.menu span {
	color: var(--light-clr);
	margin-right: 0.5em;
}
.burger {
	cursor: pointer;
	background-color: #141414;
	padding: 0.6em 0.4em;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	z-index: 800;
}
.burger div {
	width: 25px;
	height: 2px;
	background-color: var(--light-clr);
	margin: 5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.toggle .line1 {
	-webkit-transform: rotate(-45deg) translate(-5px,5px);
	-moz-transform: rotate(-45deg) translate(-5px,5px);
	-ms-transform: rotate(-45deg) translate(-5px,5px);
	transform: rotate(-45deg) translate(-5px,5px);
}
.toggle .line2 {
	opacity: 0;
}
.toggle .line3 {
	-webkit-transform: rotate(45deg) translate(-5px,-5px);
	-moz-transform: rotate(45deg) translate(-5px,-5px);
	-ms-transform: rotate(45deg) translate(-5px,-5px);
	transform: rotate(45deg) translate(-5px,-5px);
}
.overlay {
	position: absolute;
	right: 0;
	width: 48px;
	height: 46px;
	background: rgba(20,20,20,.99);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	transition: transform 0.5s;
}
.overlay.active {
	transform: scale(100,100);
}
.nav-links {
	position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 1em 7em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--gray-menu-clr);
    opacity: 0;
    visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.nav-links.active {
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: 0.2s;	
	-moz-transition-delay: 0.2s;	
	-ms-transition-delay: 0.2s;	
	transition-delay: 0.2s;	
}
.nav-links li {
	list-style: none;
	display: flex;
	align-items: center;
	min-height: 120px;
}
.nav-links a {
	color: var(--gray-menu-clr);
	font-size: var(--fs-big);
	font-weight: var(--fw-b);
	min-width: 300px;
	text-shadow: 0 2px 5px rgba(0,0,0,.7);
	opacity: .6;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

/*search for hovers*/




/*----HERO----*/

.intro {
	background-image: radial-gradient(circle, #3C3C3C 20%, #141414 80%);
	height: 100vh;
	width: 100%;
	min-height: 650px;
	max-height: 1500px;
	position: relative;
}
.intro-hero {
	width: 100%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
}
.intro-logo-box {
	width: 100%;
}
.jazba-intro-logo {
	width: 70vw;
	margin: 0 auto;
	text-align: center;
}
.jazba-intro-logo svg {
	width: 100%;
	height: auto;
}
.intro-text-box {
	text-align: center;
	padding: 0 5%;
	opacity: 0;
	animation: fill 4s ease forwards;
}
.intro-text-box h1 {
	font-weight: var(--fw-l);
	font-size: var(--fs-big);
	margin: 0;
}
#jazba {
	opacity: 0;
	animation: fill 3s ease forwards 5s;
}

@keyframes line-anim {
    to{
        stroke-dashoffset: 0;
    }
}
@keyframes fill {
    from {
        opacity: 0;
    }
    to {
       opacity: 1;
    }
}




/*----ABOUT HOME----*/

.about {
	background-image: url('imgs/acerca-bg.jpg');
	min-height: 550px;
	background-attachment: fixed;
	background-position: center;
 	background-repeat: no-repeat;
	background-size: cover;
}
.about-box {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about p {
	line-height: 2em;
	padding: 0.5em 0;
	font-size: var(--fs-ptxt);
}





/*----SERVICIOS----*/

.package-servicios {
	padding: 0;
}

.servicios-text {
	text-align: center;
	padding: 5em 5%;
}
.serv-tiles {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.tile {
	width: 50%;
	overflow: hidden;
	position: relative;
	cursor: ;
}
.tile:before {
	content: '';
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	width: 100%;
	height: 50%;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	-webkit-transition-property: top, opacity;
	transition-property: top, opacity;
	-webkit-transition-duration: 0.3s;
	        transition-duration: 0.3s;
}
.tile img {
	display: block;
	width: 100%;
	height: auto;
	opacity: .5;
}
.webTile img {
	opacity: .7;
}
.tile .details {
	position: absolute;
	color: var(--light-clr);
	z-index: 3;
	top: 10%;
	height: 100%;
	width: 100%;
	padding: 3% 10%;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.tile .details .title {
	font-family: var(--ff-services);
	font-size: var(--fs-big);
	text-shadow: 0 2px 5px rgba(0,0,0,.3);
	position: relative;
	padding: 0.3em;
}
.tile .details .title:before, .tile .details .title:after {
	content: '';
	position: absolute;
	opacity: 0;
} 
.tile .details .title:before {
	content: '';
	width: 10%;
	right: 50%;
	top: 0;
	border-top: 3px solid #fff;
	-webkit-transform: translateX(50%);
	-moz-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}
.tile .details .title:after {
	content: '';
	width: 40%;
	right: 50%;
	bottom: 0;
	border-bottom: 3px solid #fff;
	-webkit-transform: translate(50%,-75px);
	-moz-transform: translate(50%,-75px);
	-ms-transform: translate(50%,-75px);
	transform: translate(50%,-75px);
	-webkit-transition: all .2s ease 0.2s;
	-moz-transition: all .2s ease 0.2s;
	transition: all .2s ease 0.2s;
}
.tile .details .info {
	font-size: var(--fs-p);
	padding-top: 4em;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.tile .details .sitioWeb {
	font-family: var(--ff-services);
	font-size: var(--fs-big);
	text-shadow: 0 2px 5px rgba(0,0,0,.3);
	padding-top: 1.5em;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

	/*search for hovers*/





/*----FOOTER----*/

footer {
	display: flex;
	flex-direction: column;
}

.contacto {
	background-color: var(--gray-bg-clr);
	color: var(--dark-clr);
}
.contact-text {
	text-align: center;
}
form {
	padding-top: 2em;
	display: flex;
	flex-direction: column;
}
.services-box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.services-box label {
	width: 25%;
	position: relative;
	cursor: pointer;
	padding: 1.5em 0 1.5em 3em;
	border: 1px solid #BABABA;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.services-box label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 50%;
	left: 0.8em;
	height: 20px;
	width: 20px;
	border: 1px solid #BABABA;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.services-box label input:checked ~ .checkmark {
	border: 1px solid #070707;
}
.checkmark:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: none;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.services-box label input:checked ~ .checkmark:after {
	display: block;
}
.services-box label .checkmark:after {
	width: 13px;
	height: 13px;
	background-color: #707070;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

	/*search for hovers*/

.form-box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 1em 0;
}
.fbx-container {
	width: 48%;
	display: flex;
	flex-direction: column;
	padding: 1em 0;
}

input, textarea {
	background: transparent;
	border: 0px;
	border-bottom: 1px solid #BABABA;
	padding-top: 1em;
	outline: none;
}

.btn {
	background: none;
	cursor: pointer;
	width: 330px;
	padding: 1.5em 0;
	margin: 3em auto 0;
	text-transform: uppercase;
	font-weight: var(--fw-l);
	font-size: var(--fs-p);
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 2;
}
.btn {
	border: 1px solid #505050;
	color: var(--dark-clr);
}
.btn:after {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--dark-clr);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	z-index: -1;
}
	/*search for hovers*/


.btn2 {
	background: none;
	cursor: pointer;
	width: 330px;
	padding: 1.5em 0;
	margin: 3em auto 0;
	text-transform: uppercase;
	font-weight: var(--fw-l);
	font-size: var(--fs-p);
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 2;
}
.btn2 {
	border: 1px solid var(--gray-menu-clr);
	color: var(--gray-menu-clr);
}
.btn2:after {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--gray-menu-clr);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	z-index: -1;
}
	
	/*search for hovers*/


.navmap {
	display: flex;
	text-transform: uppercase;
	font-size: var(--fs-ptxt);
	padding: 3.5em 5%;
}
.navmap ul {
	width: 50%;
}
.navmap ul li {
	list-style: none;
	margin: 1.5em 0;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.navmap ul li a {
	color: var(--light-clr);
	padding-left: 15px;
}
.navmap ul li a:after {
	content: '\f105';
	font-family: FontAwesome;
	position: absolute;
	font-size: 15px;
	bottom: 0;
	left: -15px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}
.navmap ul li:first-child {
	margin-top: 0;
}
.navmap ul li:last-child {
	margin-bottom: 0;
}

.foot-socials {
	display: none;
}

.legalesPH {
	background-color: #000;
	font-family: var(--ff-legalesph);
	font-weight: 200;
	padding: 0.5em 0;
	text-align: center;
}
.legalesPH p {
	font-size: 0.65rem;
	margin: 0;
	letter-spacing: 2px;
	color: #A8A8A8;
}
.legalesPH p span {
	font-family: var(--ff-legalesph);
	font-weight: 200;
	font-size: 0.65rem;
	color: #fff;
}
.legalesPH p span a {
	color: #fff;
	font-weight: var(--fw-b);
}







/*
--------------------------------------------
SECTIONS
--------------------------------------------
*/






/*----SERVICES----*/

.service-intro {
	padding: 102px 0 0 0; 
	display: flex;
	flex-direction: column;
	background-image: url("imgs/sketch-jazba-dark.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 1700px;
	background-origin: border-box;
}
.serv-box {
	display: flex;
	height: 80vh;
}
.serv-title {
	width: 40%;
	height: 100%;
	text-align: center;
	padding: 0 4em;
}
.serv-img {
	width: 60%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}
.serv-title h1 {
	font-family: var(--ff-services);
	font-style: var(--fs-serv);
	text-transform: capitalize;
	font-size: var(--fs-serv);
	position: relative;
	top: 30%;
	-webkit-transform: translateY(-30%);
	-moz-transform: translateY(-30%);
	-ms-transform: translateY(-30%);
	transform: translateY(-30%);
}
.serv-text {
	padding: 5em 10%;
	text-align: center;
}
.serv-text p {
	font-size: var(--fs-ptxt);
}
.service-content, .serv-prgh {
	background-image: url('imgs/dots-bg-light.svg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: -20px 110%;
}
.service-content ul {
	list-style: inside;
	margin-bottom: 1em;
	padding-left: 2em;
}
.service-content ul li {
	font-size: var(--fs-p);
	margin: 0.3em 0;
}
.service-content h3 {
	margin: 1em 0;
}
.intro-txt {
	font-weight: var(--fw-r);
	text-align: right;
	margin-bottom: 3em;
	font-size: var(--fs-ptxt);
}
.round-img {
	display: block;
	width: 50%;
	margin: 0 auto;
}
.long-img {
	display: block;
	width: 90%;
	margin: 1.5em auto 0;
}
#d-graf-cols{
	display: flex;
}
#d-graf-cols ul {
	width: 50%;
}
#d-graf-cols ul li:first-child {
	list-style: none;
	font-weight: var(--fw-r);
	margin-bottom: 0.5em;
}



/*SERVICES BG*/
.social-media-bg {
	background-image: url('imgs/social-media-in.jpg');
}
.marketing-digital-bg {
	background-image: url('imgs/mkt-digital-in.jpg');
}
.publicidad-bg {
	background-image: url('imgs/publicidad-in.jpg');
}
.email-mkt-bg {
	background-image: url('imgs/email-mkt-in.jpg');	
}
.d-grafico-bg {
	background-image: url('imgs/d-grafico-in.jpg');
}
.d-web-bg {
	background-image: url('imgs/d-web-in.jpg');
}
.branding-bg {
	background-image: url('imgs/branding-in.jpg');
}
.planes-mkt-bg {
	background-image: url('imgs/planes-mkt-in.jpg');
}
.material-pop-bg {
	background-image: url('imgs/material-pop-in.jpg');
}
.talent-aq-bg {
	background-image: url('imgs/talent-aq-in.jpg');
}


/*----GENERICS----*/

.inside-title {
	padding: 8em 9%;
	background-image: url("imgs/sketch-jazba-dark.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}
.inside-title h1 {
	font-size: var(--fs-big);
	color: var(--gray-menu-clr);
}
.generic-center {
	text-align: center;
}




/*----ACERCA DE----*/

.about-content {
	background-image: url("imgs/sketch-jazba-light.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}
.nuestra-escencia {
	display: flex;
	padding-top: 2em;
	background-image: url('imgs/dots-bg-light.svg');
	background-repeat: no-repeat;
	background-size: cover;
}
.escencia-title, .escencia-img {
	width: 50%;
	text-align: center;
}
.escencia-title h2 {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.escencia-img img {
	display: block;
	width: 70%;
	height: auto;
	margin: 0 auto;
}
.competencias {
	display: flex;
	background-image: url('imgs/dots-bg-dark.svg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: -50px 150px;
}
.compet-title, .compet-list {
	width: 50%;
}
.compet-list h3:first-child {
	margin-top: 0.5em;
}
.c-title-sticky {
	text-align: center;
	margin-top: 20%;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 120px;
}
.compet-title span {
	font-size: var(--fs-serv);
	font-weight: var(--fw-b);
}



/*----TALENTO----*/

.talento-box {
	display: flex;
	align-items: center;
	padding: 2em 0;
}
.talento-box:last-child {
	padding-bottom: 0;
}
.talento-box:nth-child(even) .talento-img {
	width: 30%;
	z-index: 2;
}
.talento-box:nth-child(even) .talento-img img {
	width: 100%;
	height: auto;
}
.talento-box:nth-child(even) .talento-txt {
	width: 70%;
	background-color: var(--tlnt-bg-clr);
	position: relative;
	left: -65px;
	padding: 3em 3em 3em 85px;
	z-index: 1;
	text-align: left;
}
.talento-box:nth-child(odd) .talento-img {
	order: 2;
	width: 30%;
	z-index: 2;
}
.talento-box:nth-child(odd) .talento-img img {
	width: 100%;
	height: auto;
}
.talento-box:nth-child(odd) .talento-txt {
	width: 70%;
	background-color: var(--tlnt-bg-clr);
	position: relative;
	right: -65px;
	padding: 3em 85px 3em 3em;
	z-index: 1;
	text-align: right;
}
.talento-txt h2 {
	margin-bottom: 0.3em;
}
.talento-txt h4 {
	font-style: italic;
	margin: 0.5em 0 1em;
}




/*----SERVICIOS IN----*/

.serv-hero {
	background-image: url('imgs/servicios-bg.jpg');
	min-height: 450px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.serv-cols {
	background-image: url("imgs/sketch-jazba-light.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}
.serv-c-box {
	display: flex;
}
.serv-c-title {
	width: 30%;
	text-align: center;
}
.serv-c-title h2 {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-bottom: 0;
}
.serv-c-text, .serv-c-mtext {
	width: 70%;
	padding-left: 2em;
}
.serv-c-mtext p {
	font-size: var(--fs-ptxt);
	text-transform: uppercase;
	font-weight: var(--fw-r);
}
.serv-c-text {
	text-align: right;
}

.serv-prgh h2 {
	margin-bottom: 0.5em;
}



/*----CONSTRUCTION

.construction {
	background-color: #292929;
}
.construction-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4em 0;
}
.construction-box svg {
	width: 20%;
	height: auto;
}

.construction-box span {
	font-size: var(--fs-ptxt);
	text-transform: uppercase;
	color: white;
	margin-top: 1.5em;
}

#gear1 {
	animation: gear-one 3.5s infinite linear;
	transform-origin: center;
	transform-box: fill-box;
}
#gear2 {
	animation: gear-two 3.5s infinite linear;
	transform-origin: center;
	transform-box: fill-box;
}
#computer {
	animation: computer 1s ease-in-out infinite alternate;
	transform-origin: bottom;
}


@keyframes gear-one{
	from {
		transform: rotateZ(0deg);
	}
	to {
		transform: rotateZ(360deg);
	}
}

@keyframes gear-two{
	from {
		transform: rotateZ(360deg);
	}
	to {
		transform: rotateZ(0deg);
	}
}

@keyframes computer{
	from {
		transform: rotateX(0deg);
	}
	to {
		transform: rotateX(13deg);
	}
}



----*/





/*----PROYECTOS----*/

.proyectos-box {
	background-color: #191919;
	color: var(--light-clr);
}
.proyectos-box ul {
	list-style: inside;
  margin-bottom: 1em;
  padding-left: 2em;
}
.proyectos-box ul li {
	font-size: var(--fs-p);
  margin: 0.3em 0;
}
.proyectos-subtt {
	text-align: center;
	padding: 2em 0;
}
.redesBox {
	text-align: center;
}
.redesBox img {
	width: 80%;
	height: auto;
	margin-bottom: 1.5em;
}

.preview-shots {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background-color: var(--gray-bg-clr);
	margin-top: 4em;
}
.preview-shots img {
	align-self: center;
	width: 42%;
	height: auto;
	margin: 3em 0;
}
.final-shot {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4em;
}
.final-shot img {
	width: 55%;
	height: auto;
}
.finalWeb-shot {
	text-align: center;
}






/*-----BREAKPOINTS------*/




/*TABLET NO PARALLAX */
@media only screen and (max-device-width: 1366px) {
	.about, .serv-hero {
		background-attachment: scroll;
	}
}



/*TABLET */
@media screen and (max-width: 768px) {
	
	.redes-sociales {
		display: none;
	}
	
	.menu span {
		display: none;
	}
	.nav-links {
		padding: 1em 3em;
	}
	.nav-links li {
		min-height: 90px;
	}
	.nav-links a {
		opacity: 1;
	}	
	.nav-links p {
		display: none;
	}

	
	
	.about p {
		line-height: 1.7em;
	}
	

	.tile img {
		opacity: 0.4;
	}
	.tile .details {
		top: 0;
	}
	.tile .details .title {
		font-size: 2.5rem;
	}
	.tile .details .info {
		opacity: 1;
		padding-top: 1em;
	}
	.tile .details .sitioWeb {
		opacity: 1;
		padding-top: 1em;
	}

	.services-box label {
		width: 50%;
	}

	.foot-socials {
		display: block;
	}
	.foot-socials ul {
		display: flex;
		justify-content: center;
	}
	.foot-socials ul li {
		list-style: none;
		margin: 0 3% 3em;
	}
	.foot-socials ul li a {
		width: 50px;
		height: 50px;
		display: block;
		text-align: center;
		font-size: 2rem;
		line-height: 50px;
	}
	.foot-socials ul li a .icon {
		color: var(--light-clr);
	}


	.round-img {
		width: 60%;
	}

	.inside-title {
		padding: 6em 9%;
	}

	.nuestra-escencia {
		flex-direction: column;
	}
	.escencia-title, .escencia-img {
		width: 100%;
	}
	
	.talento-box {
		flex-direction: column;
	}
	.talento-box:nth-child(even) .talento-img {
		width: 100%;
		z-index: 2;
	}
	.talento-box:nth-child(odd) .talento-img {
		order: 0;
		width: 100%;
		z-index: 2;
	}
	.talento-box:nth-child(even) .talento-img img, .talento-box:nth-child(odd) .talento-img img {
		width: 40%;
		height: auto;
	}
	.talento-box:nth-child(even) .talento-txt, .talento-box:nth-child(odd) .talento-txt {
		width: 100%;
		background-color: var(--tlnt-bg-clr);
		position: relative;
		top: -30px;
		left: 0;
		padding: 45px 3em 2em;
		z-index: 1;
		text-align: center;
	}

}





/*MOBILE*/
@media screen and (max-width: 550px) {
	.tile {
		width: 100%;
	}

	/*.services-box label {
		width: 100%;
	}*/

	.fbx-container {
		width: 100%;
	}

	.serv-box {
		flex-direction: column;
	}
	.serv-title {
		width: 100%;
		order: 2;
	}
	.serv-img {
		width: 100%;
		order: 1;
	}
	.serv-text {
		padding-top: 0;
	}
	
	.competencias {
		flex-direction: column;
	}
	.compet-title, .compet-list {
		width: 100%;
	}
	.c-title-sticky {
		margin-top: 0;
		margin-bottom: 2em;
	}

	#d-graf-cols{
		flex-direction: column;
	}
	#d-graf-cols ul {
		width: 100%;
	}

	.serv-c-box {
		flex-direction: column;
	}
	.serv-c-title, .serv-c-text {
		width: 100%;
	}
	.serv-c-mtext {
		display: none;
	}
	.serv-c-title h2 {
		margin-top: 1.5em;
	}
	.serv-prgh {
		background-size: cover;
	}
	.foot-socials ul li {
		margin: 0 2.5% 3em;
	}
}





/*DESKTOP STYLE FOR HOVERS*/
@media screen and (min-width: 768px) {

	.nav-links a:hover {
		opacity: 1;
	}
	.nav-links li p {
		-webkit-transform: translateY(60px);
		-moz-transform: translateY(60px);
		-ms-transform: translateY(60px);
		transform: translateY(60px);
		opacity: 0;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	.nav-links li a:hover + p {
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
	}


	.tile:hover .details .title:before {
		opacity: 1;
		width: 50%;
	}
	.tile:hover .details .title:after{
		opacity: 1;
		width: 50%;
		-webkit-transform: translate(50%,0);
		-moz-transform: translate(50%,0);
		-ms-transform: translate(50%,0);
		transform: translate(50%,0);
	}
	.tile:hover .details {
		top: 0;
	}
	.tile:hover .details .info,
	.tile:hover .details .sitioWeb {
		opacity: 1;
	}

	.tile:hover:before {
		opacity: 1;
		top: 50%;
	}


	.services-box label:hover, .services-box label:hover input ~ .checkmark {
		border: 1px solid #070707;
	}


	.btn:hover,
	.btn:active {
		color: var(--light-clr);
	}
	.btn2:hover,
	.btn2:active {
		color: var(--dark-clr);
	}
	.btn:hover:after,
	.btn:active:after,
	.btn2:hover:after,
	.btn2:active:after {
		width: 100%;
	}

	.navmap ul li a:hover:after {
		left: 0;
		opacity: 1;
	}


}






