.hide{
    display: none;
}
/* Animaciones CSS */
picture.in-view{
	-webkit-animation-name: animate-service-img;
	animation-name: animate-service-img;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
@-webkit-keyframes animate-service-img{
  0%{
	-webkit-transform: translateY(35px);
	-ms-transform: translateY(35px);
	transform: translateY(35px);
  }
  100% {
	-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
	-ms-transform: matrix(1, 0, 0, 1, 0, 0);
	transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes animate-service-img{
  0%{
	-webkit-transform: translateY(35px);
	-ms-transform: translateY(35px);
	transform: translateY(35px);
  }
  100% {
	-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
	-ms-transform: matrix(1, 0, 0, 1, 0, 0);
	transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
/* Generales */
html{
	scroll-behavior: smooth;
}
*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-family: 'Roboto', sans-serif;
}
/* Centrados absolutos */
.center-me-x-y{
	position: absolute;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.center-me-x{
	position: absolute;
	left: 50%;
	-o-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.center-me-y{
	position: absolute;
	top: 50%;
	-o-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
/* Flex */
.flex-container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.align-start{
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.align-center{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.align-end{
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.justify-start{
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.justify-center{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.justify-between{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.justify-end{
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.flex-wrap{
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
/* Block */
.block{
	display: block;
}
/* Typos */
.font-300{
	font-weight: 300;
}
.font-500{
	font-weight: 500;
}
.font-700{
	font-weight: 700;
}
.uppercase{
	text-transform: uppercase;
}
/* Scroll */
.no-scroll{
	overflow: hidden;
}
/* Paddings laterales */
.padding-box{
	padding: 0 20px;
}
/* Naranja Frontaly */
.brand-color{
	color: #FF662A;
}
.brand-bg{
	background-color: #FF662A;
}
/* Cover link */
.cover-link{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    z-index: 10;
}
/* Link ver mas */
.ver-mas{
	padding-right: 20px;
}
.ver-mas span{
	font-size: 14px;
	letter-spacing: 2.5px;
	color: #005FD9;
	margin-right: 10px;
}

/* Header */
#siteHeader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 20px 19px 0 25px;
	z-index: 99;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
#siteHeader #frontalyLogo{
	height: auto;
    display: block;
	margin-top: 9px;
}
#siteHeader.opened-menu #frontalyLogo path{
	fill: #FF662A;
}
/* Header sticky */
#siteHeader.im-sticky{
	height: 72px;
	background: #ffffff;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,0.05);
	box-shadow: 0 3px 6px 0 rgba(0,0,0,0.05);
}
#siteHeader.im-sticky.opened-menu,
.page-contact #siteHeader.im-sticky.opened-menu {
	background: #303030;
	-webkit-box-shadow: unset;
	box-shadow: unset;
}
#siteHeader.im-sticky #frontalyLogo{
	width: 116px;
	height: auto;
	margin-top: 0;
}
#siteHeader.im-sticky #frontalyLogo path{
	fill: #FF662A;
}
#siteHeader.im-sticky .nav-toggle span{
	background: #1D188A;
}
#siteHeader.im-sticky.opened-menu .nav-toggle span {
    background: #ffffff !important;
}
.page-contact #siteHeader.im-sticky{
	background: #FF581F;
}
.page-contact #siteHeader.im-sticky #frontalyLogo path {
	fill: #FFFFFF;
}
.page-contact #siteHeader.im-sticky .nav-toggle span {
	background: #FFFFFF;
}
.page-contact #siteHeader.im-sticky.opened-menu #frontalyLogo path {
	fill: #ffffff;
}
/* Apertura menu */
.nav-toggle{
	width: 32px;
	height: 24px;
	cursor: pointer;
	position: relative;
}
.nav-toggle span{
	width: 32px;
	height: 4px;
	background: #1D188A;
	margin-bottom: 6px;
	-webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.nav-toggle span:last-child{
	width: 16px;
	position: absolute;
	right: 0;
	bottom: 0;
	margin-bottom: 0;
}
/* Menu abierto */
.nav-toggle.opened-toggle span{
	background: #fff;
}
.nav-toggle.opened-toggle span:first-child{
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: relative;
    top: 10px;
	margin: 0;
}
.nav-toggle.opened-toggle span:nth-child(2){
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: relative;
    top: 6px;
	margin: 0;
}
.nav-toggle.opened-toggle span:last-child{
	width: 0;
	height: 0;
	opacity: 0;
}
/* Nav */
#siteNav{
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #303030;
	padding: 129px 25px 0;
	z-index: 98;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: -webkit-transform .5s ease-in-out;
    transition: -webkit-transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
    overflow-y: auto;
}
#siteNav.opened{
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}
#siteNav .nav-links a{
	font-size: 32px;
	color: #ffffff;
	margin-bottom: 46px;
}
#siteNav .nav-links .circle-container{
	width: 80px;
	flex-shrink: 0;
	height: 80px;
	border-radius: 50%;
	background: #fff;
	margin-right: 20px;
}
#siteNav .idioma{
	margin-bottom: 70px;
	margin-top: 180px;
}
#siteNav .idioma > div:first-child{
	margin-right: 26px;
}
#siteNav .idioma input{
	width: 27px;
	height: 27px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	margin-right: 10px;
	position: relative;
}
#siteNav .idioma input:checked:before{
	content: '';
	display: block;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #ffffff;
	position: absolute;
	top: 3px;
	left: 3px;
}
#siteNav .idioma span{
	font-size: 22px;
	line-height: 1;
	color: #ffffff;
}
#siteNav .contact-link a{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #ffffff;
	position: relative;
}

#siteNav .redes{
	margin-top: 20px;
	margin-bottom: 70px;
	position: absolute;
}

#siteNav .redes{
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	-webkit-box-align: left;
	-ms-flex-align: left;
	align-items: left;
	margin-bottom: 0;
}
#siteNav .redes a svg{
	display: block;
	margin-right: 30px;
}
#siteNav .redes a:hover svg path,
#siteNav .redes a:hover svg rect{
	fill: #FF662A;
}

/* Intro */
#intro .pictures-holder{
	position: relative;
}
#intro picture#userImg{
	max-width: 538px;
	position: relative;
	z-index: 1;
	margin: 0 auto;
}
/* */
.first-scroll-right-part{
	padding: 0 20px;
	margin-bottom: 66px;
}
#introText{
	margin-bottom: 20px;
}
#introText h1{
	font-size: 32px;
	line-height: 36px;
	text-align: center;
	letter-spacing: -.5px;
	color: #04005E;
	margin-bottom: 14px;
}
#introText h2{
	font-size: 14px;
	text-align: center;
	letter-spacing: 2.5px;
	color: #1D188A;
}
.first-scroll__contact-btn{
	width: 239px;
	height: 44px;
	font-size: 16px;
	font-weight: 500;
	line-height: 44px;
	text-align: center;
	color: #fff;
	background: #F56228;
	border-radius: 29px;
	margin: 0 auto 55px;
}
.first-scroll__redes{
	width: 250px;
	margin: 0 auto;
}
/* Nuestros proyectos */
#proyectosRecientes{
	padding: 80px 0 42px 0;
	background: url(../img/proyectos-bg.svg)no-repeat;
	background-position: -6px 17px;
	background-color: #F5F5F5;
}
#proyectosRecientes h3{
	display: inline-block;
	font-size: 28px;
	line-height: 1;
	color: #303030;
	position: relative;
	padding-left: 20px;
	margin-bottom: 16px;
}
#proyectosRecientes h3:after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: #FF662A;
	position: absolute;
	top: -8px;
	right: -9px;
}
#proyectosRecientes > .kicker{
	font-size: 18px;
	line-height: 22px;
	color: #303030;
	padding-left: 20px;
	margin-bottom: 29px;
}
/* Swiper nuestros proyectos */
#proyectosRecientes .swiper-container,
#proyectosRecientes .swiper-container-proyectos {
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 54px;
}
#proyectosRecientes .swiper-container-proyectos .swiper-slide {
	width: 100%;
	margin-bottom: 20px;
	height: 450px;
}
#proyectosRecientes .swiper-slide{
	width: 252px;
	height: 371px;
    overflow: hidden;
    border-radius: 15px;
	padding-top: 20px;
	margin-right: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#proyectosRecientes .swiper-slide:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 15px;
	background: #ffffff;
	z-index: -1;
}
#proyectosRecientes .swiper-slide:last-child{
	margin-right: 0;
}
#proyectosRecientes .text-holder{
	padding: 0 20px;
}
#proyectosRecientes .site-name{
	font-size: 23px;
	color: #ffffff;
	margin-bottom: 8px;
}
#proyectosRecientes .site-tags{
	font-size: 16px;
	line-height: 1;
	color: #ffffff;
}
/* Estilo Depo */
#proyectosRecientes .swiper-slide.overflow-style:before{
	height: 310px;
	top: auto;
}
#proyectosRecientes .swiper-slide.overflow-style:after{
	content: '';
	display: block;
	height: 257px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)),color-stop(60%, rgba(0,0,0,0.6)),color-stop(84%, rgba(0,0,0,0.84)),to(rgba(0,0,0,1)));
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 60%,rgba(0,0,0,0.84) 84%,rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 60%,rgba(0,0,0,0.84) 84%,rgba(0,0,0,1) 100%);
	border-radius: 0 0 15px 15px;
}
#proyectosRecientes .swiper-slide.overflow-style .text-holder{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 35px;
	z-index: 1;
}
#proyectosRecientes .swiper-slide.overflow-style picture{
	position: absolute;
	bottom: 0;
}
/* Nuestros servicios */
#nuestrosServicios{
	background: url(../img/servicios-bg.svg)no-repeat;
	background-position: -519px -3px;
	padding: 63px 20px;
}
#nuestrosServicios > .kicker{
	font-size: 16px;
	margin-bottom: 17px;
}
#nuestrosServicios h3{
	font-size: 28px;
	line-height: 32px;
	color: #303030;
	margin-bottom: 41px;
}
/* Cajas individuales */
.servicios-box{
	max-width: 320px;
	position: relative;
	padding: 43px 23px 27px;
	border-radius: 8px;
	margin: 0 auto 81px;
}
.servicios-box picture{
	position: absolute;
	top: -45px;
	right: 15px;
	-webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
}
.servicios-box .kicker{
	font-size: 24px;
	margin-bottom: 7px;
}
.servicios-box .info-text{
	font-size: 18px;
	line-height: 26px;
	color: #303030;
}
/* Investigacion */
.servicios-box.investigacion{
	background: #F5F5F5;
}
.servicios-box.investigacion picture{
	width: 81px;
}
/* Diseno & Usabilidad */
.servicios-box.usabilidad .kicker,
.servicios-box.usabilidad .info-text{
	color: #ffffff;
}
/* Frontend tecnico */
.servicios-box.frontend{
	background: #005FD9;
}
.servicios-box.frontend .kicker,
.servicios-box.frontend .info-text{
	color: #ffffff;
}
/* AMP */
.servicios-box.amp{
	background: #ffffff;
	-webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.16);
	box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.16);
	margin-bottom: 33px;
}
/* Nuestros clientes */
#nuestrosClientes{
	padding: 34px 20px;
	background: #ffffff;
}
#nuestrosClientes > p{
	font-size: 28px;
	line-height: 32px;
	color: #111111;
	margin-bottom: 14px;
}
#nuestrosClientes .orange-bar{
	width: 0;
	height: 8px;
	-webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
#nuestrosClientes .orange-bar.in-view{
	width: 56px;
}
/* Swiper nuestros clientes */
#nuestrosClientes .swiper-container{
	margin-top: 30px;
}
#nuestrosClientes .swiper-wrapper{
	margin-bottom: 50px;
}
#nuestrosClientes .swiper-container-horizontal > .swiper-pagination-bullets{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: initial;
}
#nuestrosClientes .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
	display: block;
	margin: 0 6px;
}
#nuestrosClientes .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100px;
    max-width: 250px;
    max-height: 200px;
}

#nuestrosClientes .swiper-slide img{
    width: inherit;
    height: auto;
    max-height: 180px;
}
/* Casos de exito */
#casosDeExito{
	padding: 20px 0;
}
#casosDeExito .extra-holder{
	padding: 0 20px;
}
#casosDeExito .extra-holder > .kicker{
	font-size: 16px;
	margin-bottom: 17px;
}
#casosDeExito h3{
	font-size: 28px;
	line-height: 32px;
	margin-bottom: 10px;
}
#casosDeExito .extra-holder > p:not(.kicker){
	font-size: 18px;
	line-height: 26px;
}
#casosDeExito picture{
	margin-bottom: 30px;
}
#casosDeExito picture img{
	max-width: 566px;
	margin: 0 auto;
}
/* Estadisticas */
#casosDeExito .stats{
	padding: 0 20px;
}
#casosDeExito .stats .single-stat{
	padding-left: 24px;
	margin-bottom: 29px;
	position: relative;
}
#casosDeExito .stats .single-stat:before{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 10px;
	left: 0;
	background: #FF733C;
	border-radius: 50%;
}
#casosDeExito .stats .single-stat:nth-child(2):before{
	background: #005FD9;
}
#casosDeExito .stats .single-stat:nth-child(3):before{
	background: #11BC9F;
}
#casosDeExito .stats p{
	font-size: 18px;
	line-height: 26px;
	color: #303030;
}
/* Contacto */
#contacto{
	padding: 20px 0px 0px 0px;
	text-align: center;
	background-color: #181818;
}
#contacto p{
	color: #ffffff;
}
#contacto .text{
	font-size: 28px;
	line-height: 32px;
	margin-bottom: 16px;
}
#contacto .kicker{
	font-size: 18px;
	margin-bottom: 0px;
}
#contacto .btn{
	max-width: 280px;
	height: 50px;
	font-size: 20px;
	line-height: 50px;
	color: #303030;
	background: #ffffff;
	border-radius: 10px;
	margin: 0 auto;
}
/* Ubicacion */
#ubicacion{
	padding: 82px 0 109px;
	background: url(../img/ubicacion-bg.svg)no-repeat;
	background-color: #303030;
	color: #ffffff;
	position: relative;
}
#ubicacion:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}
#ubicacion > .extra-holder{
	padding: 0 20px;
	margin-bottom: 58px;
}
#ubicacion .donde-estamos{
	margin-bottom: 58px;
}
#ubicacion .donde-estamos .extra-holder{
	margin-bottom: 12px;
}
#ubicacion .donde-estamos svg{
    position: relative;
	margin-right: 12px;
}
#ubicacion .donde-estamos p{
	font-size: 24px;
	position: relative;
}
#ubicacion address{
	font-size: 16px;
	line-height: 24px;
	font-style: normal;
	padding-left: 25px;
	position: relative;
}
#ubicacion .sumate{
	padding-left: 25px;
	position: relative;
}
#ubicacion .sumate:before{
	content: '';
	display: block;
	width: 2px;
	background: #FF662A;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}
#ubicacion .sumate > p{
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 15px;
}
#ubicacion .sumate .cv a{
	color: #72B5FF;
}


/* Form */
.site-footer__form {
	-webkit-backdrop-filter: brightness(430%) blur(22px) opacity(29%) saturate(0.1);
	backdrop-filter: brightness(430%) blur(22px) opacity(29%) saturate(0.1);
	padding: 35px 20px 42px;
	position: relative;
	z-index: 1;
	scroll-margin-top: 176px;
}
.site-footer__fieldset {
  margin-bottom: 24px;
}
.site-footer__fieldset--is-half-width:first-child {
  -ms-flex-preferred-size: 280px;
      flex-basis: 280px;
}
.site-footer__fieldset--is-half-width:last-child {
  -ms-flex-preferred-size: 240px;
      flex-basis: 240px;
}
.site-footer__double-fieldsets-container {
  gap: 0 25px;
}
.site-footer__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.site-footer__input {
  width: 100%;
  height: 50px;
  display: block;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  line-height: 50px;
  color: #FF662A;
  border-radius: 5px;
  background: rgba(242, 244, 246, 0.15);
  padding-left: 23px;
  padding-right: 10px;
}
.site-footer__textarea {
  width: 100%;
  height: 120px;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  line-height: 18px;
  color: #FF662A;
  border-radius: 5px;
  background: rgba(242, 244, 246, 0.15);
  padding-top: 15px;
  padding-left: 23px;
}
.site-footer__textarea::-webkit-input-placeholder {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  line-height: 18px;
  color: #FF662A;
  opacity: 1;
}
.site-footer__textarea::-moz-placeholder {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  line-height: 18px;
  color: #FF662A;
  opacity: 1;
}
.site-footer__textarea:-ms-input-placeholder {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  line-height: 18px;
  color: #FF662A;
  opacity: 1;
}
.site-footer__textarea:-moz-placeholder {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  line-height: 18px;
  color: #FF662A;
  opacity: 1;
}
.site-footer__form-btn {
  width: 180px;
  height: 44px;
  font-size: 18px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 36px;
  margin-left: auto;
}
.site-footer__form-btn:hover {
  border-color: #FF662A;
  background: #FF662A;
}
/* Footer */
#site-footer{
	padding: 50px 20px 21px;
	background: #303030;
	position: relative;
}
#site-footer .redes{
	margin-bottom: 70px;
}
#site-footer .redes a{
	margin: 0 15px;
}
#site-footer .footer-logo{
	margin-bottom: 22px;
}
#site-footer .kicker{
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	color: #ffffff;
	margin-bottom: 78px;
}
#site-footer .copyright{
	font-size: 14px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 401px){
	/* Header */
	.page-home .nav-toggle span{
		background: #1D188A;
	}
}
.form-confirmation-container{
    max-width: 1320px;
    min-height:350px;
    padding: 300px 15px 250px;
    margin:50px auto
}

@media only screen and (max-width: 1023px){
    .form-confirmation-container{
        padding: 150px 15px 100px;
    }
}
/**** DESKTOP *****/
@media screen and (min-width: 1024px){

	/* Hide desktop */
	.hide-desktop{
		display: none;
	}
	/* Header */
	#siteHeader{
		padding-top: 29px;
		padding-left: 75px;
		padding-right: 60px;
	}
	#siteHeader.opened-menu{
		padding-left: 140px;
	}
	#siteHeader.im-sticky{
		padding-top: 20px;
	}
	#siteHeader #frontalyLogo{
		width: 237px;
	    margin-top: 46px;
	}
	.nav-toggle.opened-toggle span{
		background: #ffffff;
	}
	/* Header sticky desktop */
	#siteHeader.opened-menu #frontalyLogo{
		width: 237px;
	}
	/* Nav */
	#siteNav{
		padding: 200px 25px 75px 140px;
	}
	#siteNav .nav-links a:hover,
	#siteNav .nav-links a:hover span{
		color: #FF662A;
	}
	#siteNav .idioma{
		margin-bottom: 20px;
	}
	#siteNav .idioma input{
		cursor: pointer;
	}
	#siteNav .idioma input:not(:checked):hover{
		border-color: #FF662A;
	}
	#siteNav .contact-link{
		margin-right: 57px
	}
	/* Primer scroll */
	#firstScroll{
		height: 100vh;
		display: flex;
		justify-content: space-around;
		margin-bottom: 60px;
		overflow: hidden;
	}
	#intro{
		flex-basis: 578px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	    background: none;
	    padding: 0 20px;
	    margin-bottom: 0;
	}
	#intro .pictures-holder{
		max-width: 600px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		padding-top: 0;
	}
	#intro picture#userImg{
		max-width: 100%;
		margin: 0;
	}
	#introText{
		margin-bottom: 45px;
	}
	#introText .padding-box{
		padding: 0;
	}
	#introText h1{
		font-size: 38px;
		line-height: 42px;
	}
	#introText h2{
		font-size: 20px;
	}
	.first-scroll-right-part{
		flex-basis: 708px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin: 0;
	}
	.first-scroll__contact-btn{
		width: 303px;
		height: 58px;
		font-size: 20px;
		line-height: 58px;
	}
	.first-scroll__contact-btn:hover{
		background: #FF753F;
	}
	.first-scroll__redes a:hover svg path,
	.first-scroll__redes a:hover svg rect{
		fill: #FF662A;
	}
	/* Proyectos recientes */
	#proyectosRecientes{
		background-image: url(../img/proyectos-desktop-bg.svg);
		background-position: -376px 123px;
		padding-left: 0;
		text-align: center;
	}
	#proyectosRecientes h3{
		font-size: 32px;
		padding-left: 0;
	}
	#proyectosRecientes h3:after{
		width: 16px;
		height: 16px;
		top: -15px;
    	right: -30px;
	}
	#proyectosRecientes > .kicker{
		font-size: 24px;
		line-height: 1;
		padding-left: 0;
		margin-bottom: 103px;
	}
	#proyectosRecientes .swiper-container,
	#proyectosRecientes .swiper-container-proyectos{
		max-width: 1250px;
		margin: 0 auto;
		padding: 0 20px;
	}
	#proyectosRecientes .swiper-container .swiper-wrapper,
	#proyectosRecientes .swiper-container-proyectos .swiper-wrapper {
		-webkit-transform: none!important;
		-ms-transform: none!important;
		transform: none!important;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#proyectosRecientes .ver-mas{
		max-width: 1250px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		padding: 0 20px;
		margin: 0 auto;
	}
	#proyectosRecientes .ver-mas a{
		display: block;
	}
	#proyectosRecientes .ver-mas:hover span{
		color: #005FD9;
	}
	#proyectosRecientes .ver-mas:hover svg path{
		fill: #005FD9;;
	}
	#proyectosRecientes .ver-mas a:hover span{
		color: #FF662A;
	}
	#proyectosRecientes .ver-mas a:hover svg path{
		fill: #FF662A;
	}
	/* Cover link para proyectos reciente */
	#proyectosRecientes .cover-link{
		z-index: 3;
	}
	/* Generales */
	#proyectosRecientes .swiper-slide,
	#proyectosRecientes .swiper-container-proyectos .swiper-slide {
		width: 590px;
		width: 48.760999999%;
		min-height: 500px;
		height: auto;
		margin: 0 0 30px 0;
	}
	#proyectosRecientes .swiper-slide.regular-style{
		padding-top: 40px;
	}
	#proyectosRecientes .swiper-slide .text-holder{
		text-align: left;
	}
	#proyectosRecientes .swiper-slide.regular-style .text-holder{
		padding-left: 40px;
	}
	#proyectosRecientes .site-name{
		font-size: 42px;
	}
	#proyectosRecientes .site-tags{
		font-size: 18px;
		line-height: 28px;
	}
	#proyectosRecientes .swiper-slide picture img{
		max-width: 100%;
		margin: 0 auto;
	}
	#proyectosRecientes .swiper-slide.overflow-style picture img{
		width: 380px;
	}
    #proyectosRecientes .swiper-slide.regular-style picture img{
		max-width: 480px;
	}
	/* Estilo depo */
	#proyectosRecientes .swiper-slide.overflow-style:before{
		height: 451px;
	}
	#proyectosRecientes .swiper-slide.overflow-style .text-holder{
		top: 120px;
		left: 42px;
		right: auto;
		bottom: auto;
		padding: 0;
	}
	#proyectosRecientes .swiper-slide.overflow-style .text-holder .tags{
		max-width: 150px;
	}
	#proyectosRecientes .swiper-slide.overflow-style picture {
		right: -50px;
	}
	/* Ver mas en proyectos recientes */
	#proyectosRecientes .ver-mas.hide-mobile{
		-webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
	    padding: 0 50px 70px 0;
	}
	/* Nuestro servicios */
	#nuestrosServicios{
	    padding: 80px 40px;
	    text-align: center;
	    background-position: 72% -100px;
    	padding-bottom: 419px;
	}
	#nuestrosServicios h3{
		font-size: 32px;
		line-height: 46px;
		margin-bottom: 150px;
	}
	#nuestrosServicios h3 br{
		display: none;
	}
	#nuestrosServicios .extra-holder{
	    max-width: 1440px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin: 0 auto;
	}
	#nuestrosServicios .servicios-box{
		-ms-flex-preferred-size: 23.404999999%;
		flex-basis: 23.404999999%;
		text-align: left;
		padding-top: 70px;
		padding: 40px 20px 20px;
		margin-bottom: 81px!important;
	}
	.servicios-box .kicker{
		font-size: 22px;
		margin-bottom: 15px;
	}
	.servicios-box .info-text{
		font-size: 14px;
		line-height: 20px;
	}
	.servicios-box.usabilidad picture{
	    top: -65px;
	}
	.servicios-box.frontend picture{
		top: -60px;
	}
	.servicios-box.amp picture{
		top: -55px;
	}
	/* Nuestros clientes */
	#nuestrosClientes{
		background: transparent;
		margin-top: -120px;
	}
	#nuestrosClientes > p{
		max-width: 700px;
		font-size: 32px;
		line-height: 42px;
		text-align: center;
		margin: 0 auto 20px;
	}
	#nuestrosClientes .orange-bar{
		margin: 0 auto;
	}
	#nuestrosClientes .swiper-container{
		max-width: 1440px;
		margin: 100px auto 0;
	}
	#nuestrosClientes .swiper-wrapper{
		-webkit-transform: none!important;
		-ms-transform: none!important;
		transform: none!important;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#nuestrosClientes .swiper-wrapper .swiper-slide{
		width: 20%;
		margin-bottom: 50px;
	}
	#nuestrosClientes .swiper-wrapper .swiper-slide picture img{
		width: initial;
		margin: 0 auto;
	}
	#nuestrosClientes .swiper-container-horizontal > .swiper-pagination-bullets{
		display: none;
	}
	/* Casos de exito */
	#casosDeExito{
		text-align: center;
		position: relative;
		padding-top: 80px;
		padding-bottom: 130px;
	}
	#casosDeExito:before{
		content: '';
		display: block;
		width: 100%;
		height: 326px;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(to bottom, rgba(178,178,178,.1) 0%,rgba(89,89,89,0) 100%);
		z-index: -1;
	}
	#casosDeExito .extra-holder{
		margin-bottom: 40px;
	}
	#casosDeExito h3{
		font-size: 32px;
		margin-bottom: 30px
	}
	#casosDeExito .extra-holder > p:not(.kicker){
		font-size: 24px;
	}
	#casosDeExito .graficos-stats-holder{
		max-width: 1104px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding: 0 40px;
		margin: 0 auto;
	}
	#casosDeExito #graficos{
		margin-right: 20px;
	}
	#casosDeExito #graficos picture{
		width: 556px;
		margin-bottom: 0;
	}
	#casosDeExito .stats{
		text-align: left;
		padding: 120px 0 0;
	}
	#casosDeExito .stats p{
		font-size: 24px;
		line-height: 28px;
	}
	/* Contacto */
	#contacto{
		padding: 175px 20px 128px;
		background-position: 0 -114px;
	}
	#contacto .text{
		font-size: 38px;
		margin-bottom: 36px;
	}
	#contacto .kicker{
		font-size: 24px;
	}
	#contacto .btn:hover{
		-webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
        box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
	}
	/* Ubicacion */
	#ubicacion{
		min-height: 472px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	    background-image: url(../img/ubicacion-desktop-bg.svg);
	    background-position: 66px 30px;
		padding-top: 138px;
		padding: 138px 20px 109px;
	}
	#ubicacion > .extra-holder{
		padding: 0;
		margin-right: 265px;
	}
	#ubicacion .donde-estamos{
    	max-width: 380px;
	}
	#ubicacion .donde-estamos svg{
		width: 22px;
		height: auto;
		margin-right: 40px;
	}
	#ubicacion address{
		font-size: 18px;
		line-height: 26px;
		padding-left: 66px;
	}
	#ubicacion .sumate:before{
		height: 96px;
		bottom: auto;
	}
	#ubicacion .sumate .cv p,
	#ubicacion .sumate .cv a{
		font-size: 18px;
		line-height: 26px;
	}
	#ubicacion .sumate .cv a:hover{
		color: #FF662A;
	}
	/* Form */
	.site-footer__form{
		border-radius: 10px;
	}
	/* Footer */
	#site-footer{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-pack: distribute;
    	justify-content: space-around;
    	padding: 67px 20px;
	}
	#site-footer .redes .extra-holder{
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	#site-footer .footer-logo{
		display: block;
		margin-bottom: 20px;
	}
	#site-footer .kicker{
		text-align: left;
		margin-bottom: 42px;
	}
	#site-footer .kicker br{
		display: none;
	}
	#site-footer .copyright{
		text-align: left;
	}
	#site-footer .redes{
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 0;
	}
	#site-footer .redes a svg{
		display: block;
	}
	#site-footer .redes a:hover svg path,
	#site-footer .redes a:hover svg rect{
		fill: #FF662A;
	}
	/* Ver mas */
	.ver-mas:hover span{
		color: #FF662A;
	}
	.ver-mas:hover svg path{
		fill: #FF662A;
	}
}

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

	/* Estilo depo */
	#proyectosRecientes .swiper-slide.overflow-style picture{
		right: 0;
	}
	/* Casos de exito */
	#casosDeExito #graficos{
		margin-right: 65px;
	}

}

@media screen and (min-width: 1280px){
	#introText h1{
		font-size: 44px;
		line-height: 58px;
	}
}

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

	/* Nuestro servicios */
	#nuestrosServicios h3{
		max-width: 800px;
		font-size: 32px;
		line-height: 46px;
		margin-bottom: 150px;
		margin: 0 auto 150px;
	}
	#nuestrosServicios h3 br{
		display: none;
	}
	#nuestrosServicios .extra-holder{

	}
	#nuestrosServicios .servicios-box{
		-ms-flex-preferred-size: 23.404999999%;
		flex-basis: 23.404999999%;
		height: 300px;
		text-align: left;
		padding: 70px 23px 27px;
	}
	.servicios-box .kicker{
		font-size: 26px;
		margin-bottom: 25px;
	}
	.servicios-box .info-text{
		font-size: 16px;
		line-height: 24px;
	}
	.servicios-box.investigacion picture{
		width: 120px;
	}
	.servicios-box.usabilidad picture{
		width: 110px;
	    top: -65px;
	}
	.servicios-box.frontend picture{
		width: 109px;
		top: -60px;
	}
	.servicios-box.amp picture{
		width: 94px;
		top: -55px;
	}

}

@media screen and (max-width: 1023px){

	/* Hide mobile */
	.hide-mobile{
		display: none!important;
	}

}


/**** COLORES PARA SlIDERS DE NUESTROS PROYECTOS ****/

/* Color Cronica 2022*/
#cronica2022-slide.swiper-slide:before{
	background: #990004;
}

/* Color Veintitres*/
#veintitres-slide.swiper-slide:before{
	background: #FC8F16;
}

/* Color Rosario Plus*/
#rosarioplus-slide.swiper-slide:before{
	background: #000000;
}

/* Color Politica MX*/
#politicamx-slide.swiper-slide:before{
	background: #D4231C;
}

/* Color Pasion Futbol*/
#pasionfutbol-slide.swiper-slide:before{
	background: #000000;
}

/* Color ARG Noticias*/
#argnoticias-slide.swiper-slide:before{
	background: #00A6E8;
}

/* Color Grupo Gamma*/
#grupogamma-slide.swiper-slide:before{
	background: #006A50;
}

/* Color BAE Negocios*/
#baenegocios-slide.swiper-slide:before{
	background: #C41A1B;
}

/* Color Gris sin Ficha*/
#grey-slide.swiper-slide:before{
	background: #666666;
}

/* Color Lidom*/
#lidom-slide.swiper-slide:before{
	background: #04005E;
}

#diario-de-cuyo-slide.swiper-slide:before{
	background: #0040AA;
}


/* Color La Capital */
#la-capital-slide.swiper-slide:before{
	background: #000A2F;
}


/* Color Techint Escuela */
#techint-slide.swiper-slide:before{
	background: #000000;
}

/* Color Acento 2023*/
#acento23-slide.swiper-slide:before{
	background: #C90000;
}


/* Color Acento */
#acento-slide.swiper-slide:before{
	background: #EE0000;
}


/* Color LOA */
#laopinionaustral-slide.swiper-slide:before{
	background: #022466;
}


/* Color Mercado de Pases */
#mercadodepases-slide.swiper-slide:before{
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,161,6,1)),to(rgba(0,161,6,1)));
	background: -o-linear-gradient(top, rgba(0,161,6,1) 0%,rgba(0,24,80,1) 100%);
	background: linear-gradient(to bottom, rgba(0,161,6,1) 0%,rgba(0,24,80,1) 100%);
}

/* Color Depo */
#depo-slide.swiper-slide:before{
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(77,99,207,1)),to(rgba(136,11,238,1)));
	background: -o-linear-gradient(top, rgba(77,99,207,1) 0%,rgba(136,11,238,1) 100%);
	background: linear-gradient(to bottom, rgba(77,99,207,1) 0%,rgba(136,11,238,1) 100%);
}
/* Color Infobae */
#infobae-slide.swiper-slide:before{
	background: #F78100;
}
/* Color El Agrario */
#el-agrario-slide.swiper-slide:before{
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,152,0,1)),to(rgba(0,131,0,1)));
	background: -o-linear-gradient(top, rgba(0,152,0,1) 0%,rgba(0,131,0,1) 100%);
	background: linear-gradient(to bottom, rgba(0,152,0,1) 0%,rgba(0,131,0,1) 100%);
}
/* Color El Economista */
#el-economista-slide.swiper-slide:before{
	background: #187EB8;
}
/* Color Rosario Central */
#rosario-central-slide.swiper-slide:before{
	background: #003366;
}
/* Color Rosario 3 */
#rosario-3-slide.swiper-slide:before{
	background: #F15A08;
}
/* Color Diario Show */
#diario-show-slide.swiper-slide:before{
	background: #c6005f;
}
/* Color Cronica */
#cronica-slide.swiper-slide:before{
	background: #ec172d;
}
/* Color PasionFutbol */
#pasion-futbol-slide.swiper-slide:before{
	background: #666666;
}
/* Color Cripto247 */
#cripto-247-slide.swiper-slide:before{
	background: #9600be;
}
/* Color Cronista */
#cronista-slide.swiper-slide:before{
	background: #000000;
}
/* Color DDC */
#diariodecuyo-slide.swiper-slide:before{
	background: #015374;
}
/* Color LC */
#la-censura-slide.swiper-slide:before{
	background: #E80707;
}
/**** FORMULARIO DE CONTACTO ****/
.page-contact #siteHeader #frontalyLogo{
	width: 116px;
	height: auto;
	margin-top: 0;
}
.page-contact #contacto{
	padding: 115px 20px 170px 20px;
	text-align: left;
	background: url(../img/contacto-bg.svg)no-repeat;
  background-position: -443px -96px;
	background-color: #FF662A;
}
.page-contact #contacto p {
	color: #ffffff;
}
.page-contact #contacto .text{
	font-size: 28px;
	line-height: 32px;
	margin-bottom: 60px;
}
.page-contact #contacto .kicker{
	font-size: 18px;
	margin-bottom: 36px;
}
.page-contact #contacto .btn{
	width: 280px;
    max-width: 280px;
	height: 50px;
	font-size: 20px;
	line-height: 50px;
	color: #000;
	background: #ffffff;
	border-radius: 10px;
	margin: 0 auto;
}
form.formulario-contacto {
	width: 100%;
	margin: 0 auto;
}
form.formulario-contacto input::-webkit-input-placeholder, form.formulario-contacto textarea::-webkit-input-placeholder {
	color: #fff;
	font-size: 16px;
}
form.formulario-contacto input::-moz-placeholder, form.formulario-contacto textarea::-moz-placeholder {
	color: #fff;
	font-size: 16px;
}
form.formulario-contacto input:-ms-input-placeholder, form.formulario-contacto textarea:-ms-input-placeholder {
	color: #fff;
	font-size: 16px;
}
form.formulario-contacto input::-ms-input-placeholder, form.formulario-contacto textarea::-ms-input-placeholder {
	color: #fff;
	font-size: 16px;
}
form.formulario-contacto input,
form.formulario-contacto input::placeholder,
form.formulario-contacto textarea,
form.formulario-contacto textarea::placeholder {
	color: #fff;
	font-size: 16px;
}
form.formulario-contacto input,
form.formulario-contacto textarea {
	margin-bottom: 45px;
	border-bottom: 1px solid #fff;
	width: 100%;
}
form.formulario-contacto input.invalid {
	border-bottom: 2px solid #FF2E00;
}
form.formulario-contacto textarea {
	margin-bottom: 40px;
}
form.formulario-contacto input {
	line-height: 40px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance:textfield;
}
form.formulario-contacto label {
	display: block;
}
.form-row {
	position: relative;
}
.form-label {
	position: absolute;
	top: 7px;
	left: 0;
	color: #fff;
	font-size: 16px;
	cursor: text;
	-webkit-transition: all .15s ease-in-out 0s;
	-o-transition: all .15s ease-in-out 0s;
	transition: all .15s ease-in-out 0s;
}
.form-textarea .form-label {
	top: 0;
	line-height: 0;
}
.form-textbox:focus ~ .form-label {
	top: -12px;
	font-size: 12px;
	cursor: pointer;
}
.form-textbox:focus {
	border-bottom: 2px solid #005FD9;
}
.form-textbox {
	-webkit-transition: all .15s ease-in-out 0s;
	-o-transition: all .15s ease-in-out 0s;
	transition: all .15s ease-in-out 0s;
}
.page-contact picture img {
	width: 68px;
	height: 68px;
	margin: 0 auto;
}
@media screen and (min-width: 1024px){
	.page-contact #siteHeader {
		padding-top: 20px;
	}
	.page-contact #siteHeader.opened-menu #frontalyLogo {
    width: 237px;
	}
	.page-contact #contacto{
		padding: 120px 200px 160px 200px;
		text-align: center;
		background-position: -220px -20px;
		background-size: cover;
	}
	.page-contact #contacto .text{
		font-size: 32px;
		margin-bottom: 70px;
	}
	.page-contact #contacto .kicker{
		font-size: 24px;
	}
	.page-contact #contacto .btn:hover{
		-webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
	}
	form.formulario-contacto {
		max-width: 700px;
	}
	form.formulario-contacto input::-webkit-input-placeholder, form.formulario-contacto textarea::-webkit-input-placeholder {
		font-size: 22px;
	}
	form.formulario-contacto input::-moz-placeholder, form.formulario-contacto textarea::-moz-placeholder {
		font-size: 22px;
	}
	form.formulario-contacto input:-ms-input-placeholder, form.formulario-contacto textarea:-ms-input-placeholder {
		font-size: 22px;
	}
	form.formulario-contacto input::-ms-input-placeholder, form.formulario-contacto textarea::-ms-input-placeholder {
		font-size: 22px;
	}
	form.formulario-contacto input,
	form.formulario-contacto input::placeholder,
	form.formulario-contacto textarea,
	form.formulario-contacto textarea::placeholder {
		font-size: 22px;
	}
	.form-label {
		font-size: 22px;
	}
	form.formulario-contacto textarea {
		margin-bottom: 82px;
	}
}
/**** PAGE PROYECTOS ****/
.proyectosTabs {
	padding: 0 0 20px 20px;
	text-align: left;
}
.proyectosTabs h1 {
	color: #303030;
	font-size: 48px;
	line-height: 40px;
}
.proyectosTabs ul {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
}
.proyectosTabs ul li {
	height: 40px;
	border-radius: 3px;
	padding: 10px 15px;
	color: #303030;
	min-width: 85px;
	text-align: center;
	border: 1px solid #70707033;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
	margin-right: 10px;
	margin-bottom: 10px;
}
.proyectosTabs ul li:hover {
	cursor: pointer;
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.proyectosTabs ul li.tabActive {
	background: #005FD9;
	border-color: #005FD9;
	color: #fff;
}
@media screen and (max-width: 1023px) {
	#proyectosRecientes .swiper-container-proyectos .swiper-wrapper {
		display: block;
	}
	#proyectosRecientes .swiper-container-proyectos .swiper-slide.overflow-style {
		height: 480px;
	}
	#proyectosRecientes .swiper-container-proyectos .swiper-slide.overflow-style:before {
		height: 430px;
	}
	#proyectosRecientes .swiper-container-proyectos .swiper-slide.overflow-style picture {
		width: 320px;
		right: 0;
	}
}
@media screen and (min-width: 1024px){
	.proyectosTabs {
		padding: 0 60px 50px 60px;
	}
	.proyectosTabs ul {
		justify-content: space-around;
	}
	.proyectosTabs ul li {
		margin-right: 0;
		margin-bottom: 0;
	}
	.proyectosTabs h1 {
		font-size: 72px;
		line-height: 52px;
	}
	.page-proyectos #proyectosRecientes {
		background-position: -500px 90px;
		background-size: 1025px;
	}
	.page-proyectos #contacto,
	.page-nosotros #contacto {
		background: url(../img/back-grey.svg)no-repeat;
		background-position: center;
		background-size: cover;
	}
	.page-proyectos #contacto p.text,
	.page-proyectos #contacto p.kicker,
	.page-nosotros #contacto p.text,
	.page-nosotros #contacto p.kicker {
		color: #000000;
	}
	.page-proyectos #contacto .btn,
	.page-nosotros #contacto .btn {
		background: #FF662A;
		color: #ffffff;
	}
}
@media screen and (min-width: 1280px){
	.proyectosTabs {
		padding: 0 250px 100px 250px;
	}
}
.page-proyectos #proyectosRecientes {
	background: url(../img/proyectos-bg.svg)no-repeat;
	background-position: 0 90px;
	background-color: #fff;
	margin-top: 130px;
	background-size: 700px;
}
/** .page-proyectos #pasion-futbol-slide.swiper-slide:before{
	background: #4d6600;
}
.page-proyectos #ver-mas-slide {
	background: #F2F2F2;
} ***/
/**** PAGE NOSOTROS ****/
#nosotrosPortada {
	padding: 113px 20px 90px 20px;
}
#nosotrosPortada .nosotrosPortada-holder .kicker {
	font-size: 14px;
	margin-bottom: 10px;
}
#nosotrosPortada .nosotrosPortada-holder h3 {
	font-size: 36px;
	line-height: 45px;
	color: #303030;
	margin-bottom: 30px;
}
#nosotrosPortada .nosotrosPortada-holder p:not(.kicker) {
	color: #303030;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 30px;
}
#nosotrosPortada .nosotrosPortada-holder img {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}
#objetivos{
	background: url(../img/objetivosBg.png)no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
	height: 0;
	padding-top: 100%;
	position: relative;
}
@media screen and (min-width: 720px){
	#objetivos {
		padding-top: 56%;
	}
}
#objetivos .extra-holder {
	position: absolute;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
	padding: 0 20px;
}
#objetivos .extra-holder > .kicker{
	font-size: 16px;
	margin-bottom: 17px;
}
#objetivos .extra-holder h3{
	font-size: 28px;
	line-height: 30px;
	color: #000;
}
#galeria {
	padding: 90px 0 100px 0;
}
.galeriaContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 20px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.galeriaItem {
	width: calc(50% - 30px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 10px 15px;
	border-radius: 10px;
}
.galeriaItemInner {
	border-radius: 10px;
}
.galeriaItem-1 {
	height: 200px;
	background: #f2f2f2;
	position: relative;
}
.galeriaItem-1 picture {
	position: absolute;
	right: -10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 127px;
}
.galeriaItem-2 {
	height: 200px;
	background: url(../img/team/avatar_10.jpg)no-repeat;
	background-size: cover;
	background-position: center;
}
.galeriaItem-3 {
	height: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.galeriaItem-4 {
	height: 200px;
	background: url(../img/team/avatar_14.png)no-repeat;
	background-size: cover;
	background-position: center;
}
.galeriaItem-5 {
	height: 288px;
	width: 100%;
}
.galeriaItem-9 {
	height: 134px;
	background: #FF8B3E;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.galeriaItem-9 img {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 54px;
}
.galeriaItem-7 {
	height: 134px;
	background: url(../img/team/avatar_11.jpg)no-repeat;
	background-size: cover;
	background-position: center;
}
.galeriaItem-8 {
	display: none;
}
.galeriaItem-6 {
	height: 134px;
	background: url(../img/team/avatar_07.jpg)no-repeat;
	background-size: cover;
	background-position: center;
}
.galeriaItem-10 {
	height: 134px;
	background: url(../img/team/avatar_13.jpg)no-repeat;
	background-size: cover;
	background-position: center;
}
.galeriaItem-11 {
	height: 134px;
	background: url(../img/team/avatar_09.jpg)no-repeat;
	background-size: cover;
	background-position: center;
}
.galeriaItemInner-1 {
	margin-bottom: 20px;
	height: calc(67% - 20px);
	background: url(../img/team/avatar_12.jpg)no-repeat;
	background-size: 560px;
	background-position: -98px -100px;
}
.galeriaItemInner-2 {
	height: 33%;
	background: #7CB0E5;
}
.galeriaItemInner-3 {
	margin-bottom: 20px;
	height: calc(50% - 10px);
	background: url(../img/team/avatar_05.jpg)no-repeat;
	background-size: cover;
	background-position: 50% 0%;
}
.galeriaItemInner-4 {
	height: calc(50% - 10px);
	background: url(../img/team/avatar_06.png)no-repeat;
	background-size: cover;
	background-position: 0% 0%;
}
@media screen and (min-width: 1024px){
	#nosotrosPortada {
		padding: 0 88px;
		text-align: center;
	}
	#nosotrosPortada .nosotrosPortada-holder {
		padding: 172px 0 120px 0;
		background: url(../img/misc-03.svg)no-repeat;
		background-position: 50% 0%;
		background-size: contain;
	}
	#nosotrosPortada .nosotrosPortada-holder .kicker{
		font-size: 16px;
		line-height: 18px;
	}
	#nosotrosPortada .nosotrosPortada-holder h3 {
		color: #000000;
		font-size: 52px;
		line-height: 60px;
		max-width: 800px;
		margin: 0 auto;
		margin-bottom: 40px;
	}
	#nosotrosPortada .nosotrosPortada-holder p:not(.kicker) {
		font-size: 32px;
		line-height: 46px;
		max-width: 1030px;
		margin: 0 auto;
		color: #303030;
		margin-bottom: 80px;
	}
	#objetivos .extra-holder h3 {
		font-size: 48px;
		line-height: 60px;
		max-width: 990px;
		margin: 0 auto;
	}
	#galeria {
		padding: 117px 0 178px 0;
	}
	.galeriaContainer {
		padding: 0 40px;
	}
	.galeriaItem {
		width: calc(33.33% - 70px);
		margin: 26px 35px;
	}
	.galeriaItem-1 {
		height: 473px;
	}
	.galeriaItem-1 picture {
		right: -20px;
		width: 260px;
	}
	.galeriaItem-2 {
		height: 473px;
	}
	.galeriaItem-3 {
		height: 473px;
	}
	.galeriaItem-4 {
		height: 685px;
		background-position: -50px 0;
	}
	.galeriaItem-5 {
		height: 685px;
		width: calc(66.66% - 70px);
	}
	.galeriaItem-6 {
		height: 316px;
	}
	.galeriaItem-6 img {
		width: 128px;
	}
	.galeriaItem-7 {
		height: 316px;
	}
	.galeriaItem-8 {
		height: 316px;
		display: block;
		background: #f2f2f2;
	}
		.galeriaItem-9 {
		height: 316px;
	}
	.galeriaItem-9 img {
		width: 128px;
	}
		.galeriaItem-10 {
		height: 316px;
	}
		.galeriaItem-11 {
		height: 316px;
	}
	.galeriaItemInner-1 {
		margin-bottom: 50px;
		background-size: 554px;
		height: calc(67% - 50px);
	}
	.galeriaItemInner-2 {
		height: 33%;
	}
	.galeriaItemInner-4 {
		margin-bottom: 50px;
		height: calc(50% - 50px);
	}
	.galeriaItemInner-3 {
		height: 50%;
		background-size: 1100px;
		background-position: 0% 50%;
	}
}
