/*

Estilos para nuestro sitio, hermosos como un oceano.
Eres libre de modifcar esta hoja a tu antojo. Be water my friend...

*/

* {
	-webkit-box-sizing:border-box;
	    	box-sizing:border-box
}
html {
	overflow-x:hidden;
	font-size:62.5%; /* Para usar rem de forma "amable": 1px = 1rem */
	-webkit-text-size-adjust:100%;
		-ms-text-size-adjust:100%;
}
body {
	width: 100%;
	margin: 0 auto !important;
	overflow-x:hidden;
	font-size:16px; /* Fallback por si algún navegador no lee rem (usar siempre, no sólo en body) */
	font-size:1.6rem;
	font-family: 'HKGrotesk-Light';
	-webkit-font-variant-ligatures: normal;
            font-variant-ligatures: normal;
	text-rendering: optimizeLegibility;
	color: #333333;
}
header{
	position: fixed;
	left: 0; 
	right: 0;
	z-index: 2;
	padding: 20px 0px;
}
header > .container{
	    position: relative;
}
header > .container nav.nav{
	  position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background-color: rgba(0,0,0,0.5);
    z-index: -2;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
header > .container nav.nav.is-active{
    z-index: 2;
    opacity: 1;
    position: fixed;
}
header > .container nav.nav .menu-main-container{
	    position: absolute;
	    top: 0;
	    bottom: 0;
	    right: -100%;
	    background-color: #E91E3C;
	    width: 450px;
    max-width: 100%;
	    padding: 20px 40px;
	    -webkit-transition: all 0.3s;
	    transition: all 0.3s;
}
header > .container nav.nav.is-active .menu-main-container{
	right: 0px;
}
header > .container nav.nav .menu-main-container ul{
	position: absolute;
	top: 25%;
}
header > .container nav.nav .menu-main-container ul li{
	display: block;
}
header > .container nav.nav .menu-main-container ul li a{
	font-family: 'HKGrotesk-Light';
	color: #fff;
	font-size: 40px;
	line-height: 50px;
	margin: 10px auto;
	text-decoration: none;
}
a {
	-webkit-transition: .3s ease;
        	transition: .3s ease;
    color: inherit;   	
}
a:hover, a:focus{
	text-decoration: none;
	color: inherit;
}
a:focus { outline: 0 !important; }
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
footer { padding: 16px; 
	background: #000000;
}
.contenido,
.wrap,
.main,
.sidebar,
section {
	display: block;
	position: relative;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
          transition-property: height, visibility;
}
section {
	overflow: hidden;
	padding: 40px 0px;
	padding: 80px 0px;
}
.contenido {
	width: 100%;
}
.wrap {
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 50px;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #706f6f;
	opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #706f6f;
	opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #706f6f;
	opacity: 1;
}

/*
---------------------------------------------------------------------------------------------------------------------
ELEMENTOS RECURRENTES
Estilos comunes que facilitan la maquetación de elementos recurrentes 
---------------------------------------------------------------------------------------------------------------------
*/
.left,
div.left {
	float: left;
}
.right,
div.right {
	float: right;
}
.txt-left{
	text-align: left;
}
.txt-der {
	text-align: right;
}
.txt-cnt{
	text-align: center;
}
.centrado { /* Con esta clase centramos horizontal-verticalmente un elemento. La capa madre tiene que tener declarada position: relative; */
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
        	transform: translate(-50%,-50%);
}
.img-centrada { /* Con esta clase centramos horizontalmente una imagen  */
	display: block;
	margin-right: auto;
	margin-left: auto;
}

/*
---------------------------------------------------------------------------------------------------------------------
MENÚS
---------------------------------------------------------------------------------------------------------------------
*/
.menu,
.sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu > li {
	display: inline-block;
}
.menu > li > a {
	display: block;
}

/*
---------------------------------------------------------------------------------------------------------------------
BOTONES 

Basados en: Pure v0.6.0
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
---------------------------------------------------------------------------------------------------------------------
*/
.boton, a#cn-accept-cookie {
	display: inline-block;
	zoom: 1;
	line-height: normal;
	white-space: nowrap;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	-webkit-user-drag: none;
	-webkit-user-select: none;
       -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	-webkit-transition: .3s ease;
        	transition: .3s ease;
}
.boton::-moz-focus-inner {
	padding: 0;
	border: 0
}
.boton, a#cn-accept-cookie {
	
	padding: .5em 1em;
	    padding: 12px;
	    padding-top: 10px;
	color: #444;
	border: 1px solid #999;
	background-color: #E6E6E6;
	text-decoration: none;
	border-radius: 2px;
}
.boton:hover,
.boton:focus {
	    background-color: #E91E3C;
    text-decoration: none;
    color: #fff;
}
.boton:focus {
	outline: 0
}
.boton:active {
	background-color: #E6E6E6;
}
.boton[disabled],.boton-disabled,.boton-disabled:hover,.boton-disabled:focus,.boton-disabled:active {
	filter: alpha(opacity=40);
	-khtml-opacity: .4;
      -moz-opacity: .4;
		   opacity: .4;
	cursor: not-allowed;
}
.boton.oculto {
	display: none;
}
.boton.secundario {
	
}
.boton.secundario:hover,
.boton.secundario:focus {
	
}

/*
---------------------------------------------------------------------------------------------------------------------
MASONRY
Para la siguiente estructura de html
<div class="grid">
	<div class="grid-item"></div>
	<div class="grid-item"></div>
	etc.
</div>
---------------------------------------------------------------------------------------------------------------------
*/
.grid {
	margin-right: -15px;
	margin-left: -15px;
	display: block;
}
.grid-sizer, .grid-item {
	float: left;
	width: 50%; /* Ahora a 4 columnas */
	padding: 0 15px;
	margin-bottom: 30px;
}
.grid-item--width2{
	width: 100%;
}
.grid-item .content{
	-webkit-box-shadow: 0 2px 4px 0 #DDDCDC;
	        box-shadow: 0 2px 4px 0 #DDDCDC;
    padding: 30px;
    background: #fff;
}
.grid-item .content h3{
	margin-top: 0px;
}
.grid-item .content p{
	color: #AAAAAA;
}
.grid-item .content a.flecha{
	color: #E91E3C;
}
.grid-item .content a.flecha img{
	display: none;
}
.grid-item .content a.flecha img.img-hover{
	display: inline;
}
.grid-item .content a.flecha:hover{
	color: #AAAAAA;
}
.grid-item .content a.flecha:hover img{
	display: inline;
}
.grid-item .content a.flecha:hover img.img-hover{
	display: none;
}
.grid-item.grid-item--width2 article > a{
	    position: relative;
    display: block;
}
.grid-item.grid-item--width2 article > a h3{
	    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    margin: 0px;
    width: auto;
    color: #fff;
    font-size: 40px;
    line-height: 50px;
}
.grid-item.grid-item--width2 article > a img{
	width: 100%;
}
/*
----------------------------------------
	FONTS
----------------------------------------	
*/


@font-face {
  font-family: 'HKGrotesk-Light';
  src: url('../fonts/HKGrotesk-Light.eot?#iefix') format('embedded-opentype'),  url('../fonts/HKGrotesk-Light.otf')  format('opentype'),
	     url('../fonts/HKGrotesk-Light.woff') format('woff'), url('../fonts/HKGrotesk-Light.ttf')  format('truetype'), url('../fonts/HKGrotesk-Light.svg#HKGrotesk-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HKGrotesk-Medium';
  src: url('../fonts/HKGrotesk-Medium.eot?#iefix') format('embedded-opentype'),  url('../fonts/HKGrotesk-Medium.otf')  format('opentype'),
	     url('../fonts/HKGrotesk-Medium.woff') format('woff'), url('../fonts/HKGrotesk-Medium.ttf')  format('truetype'), url('../fonts/HKGrotesk-Medium.svg#HKGrotesk-Medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HKGrotesk-Bold';
  src: url('../fonts/HKGrotesk-Bold.eot?#iefix') format('embedded-opentype'),  url('../fonts/HKGrotesk-Bold.otf')  format('opentype'),
	     url('../fonts/HKGrotesk-Bold.woff') format('woff'), url('../fonts/HKGrotesk-Bold.ttf')  format('truetype'), url('../fonts/HKGrotesk-Bold.svg#HKGrotesk-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
	

/*
----------------------------------------
	Básicos y recursivos
----------------------------------------	
*/
h1, .h1{
	font-family: 'HKGrotesk-Bold';
	font-size: 60px;
	line-height: 64px;
	font-weight: bold;
}
h2, .h2{
	font-family: 'HKGrotesk-Light';
	font-size: 40px;
	line-height: 50px;
	    font-weight: lighter;
}
h3, .h3{
	font-family: 'HKGrotesk-Light';
	font-size: 30px;
	line-height: 36px;
	    font-weight: lighter;
}
h4, .h4{
	font-family: 'HKGrotesk-Light';
	font-size: 24px;
	line-height: 30px;
	    font-weight: lighter;
}
h5, .h5{
	font-family: 'HKGrotesk-Light';
	font-size: 18px;
	line-height: 24px;
	    font-weight: lighter;
}
h6, .h6{
	font-family: 'HKGrotesk-Medium';
	font-size: 16px;
	line-height: 20px;
	  font-weight: normal;
}
p{
	font-family: 'HKGrotesk-Light';
	font-size: 14px;
	line-height: 18px;
	    font-weight: lighter;
}
p.super{
	font-family: 'HKGrotesk-Medium';
	font-size: 290px;
	font-weight: normal;
	margin: 0px;
	margin-bottom: 20px;
	color: #F2F2F2;
	position: relative;
	z-index: -1;
}
p.small{
	font-family: 'HKGrotesk-Light';
	font-size: 12px;
	line-height: 14px;
	    font-weight: lighter;
}
label, label a{
	font-family: 'HKGrotesk-Medium';
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 1px;
	color: #AAAAAA;
	font-weight: normal;
}
label + h3, label + h2, label + h5{
	margin-top: 15px;
}
section.last{
	padding-bottom: 0px;
}
a{
	font-family: 'HKGrotesk-Medium';
	font-size: 14px;
	line-height: 18px;
	text-decoration: none;
}
a.boton, .boton, a#cn-accept-cookie{
	color: #E91E3C;
	border: 1px solid #E91E3C;
	border-radius: 25px;
	background-color: transparent;
}
a.boton:hover{
	color: #fff;
	background-color: #E91E3C;
}
a.boton.negativo, a#cn-accept-cookie{
	color: #FFF;
	border: 1px solid #FFF;
	border-radius: 25px;
}
a.boton.negativo:hover, a#cn-accept-cookie:hover{
	color: #120235;
	background-color: #fff;
}
.white{
	color: #fff;
}
.red{
	color: #E91E3C;
}
.blue{
	color: #120235;
}
.second-red{
	color: #CB1732;
}
.light-grey{
	color: #f2f2f2;
}
.grey{
	color: #AAAAAA;
}
.dark-grey{
	color: #888888;
}
.dark-grey.opacity{
	
}
.bg-light-grey{
	background-color: #f2f2f2;
}
.bg-grey{
	background-color: #AAAAAA;
}
.bg-dark-grey{
	background-color: #888888;
}
.bg-blue{
	background-color: #120235;
}
.bg-white{
	background-color: #fff;
}
.bg-red{
	background-color: #E91E3C;
}
strong{
	font-family: 'HKGrotesk-Medium';
}
hr{
	margin: 0px auto;
}
hr.line-title{
	    border-top: 2px solid #E91E3C;
    width: 40px;
    margin: 0px auto 60px;
}
hr.line-title.blue{
	border-top-color: #120235;
}
.no-padd{
	padding: 0px;
}
.image-translate{
	    position: absolute;
    right: 0;
    overflow: visible;
}
.row-eq-height {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-section label{color: #AAAAAA;margin: 0px;}
.header-section h2{margin: 20px 0px;}
header.white .logo-principal{
	display: none;
}
header.white.fixed .logo-white{
	display: none;
}
header.white.fixed .logo-principal{
	display:block;
}
section.header-slide, section.header-image{
	background-size: cover;
	background-position: center; 
}
section.header-slide .flecha-slider{
	    position: absolute;
    left: 50%;
    bottom: 10%;
}
section.header-slide .content-slider_ppl, section.header-image .content-slider_ppl{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
section.header-image {
	height: 450px;
}
.caja_icono_texto div[class^="col-"] .content{
	    padding: 10%;
    padding-top: 24px;
    padding-bottom: 24px;
}
.caja_icono_texto a .img-hover{
	display: none;
}
.caja_icono_texto a:hover img{
	display: none;
}
.caja_icono_texto a:hover img.img-hover{
	display: inline;
}
.caja_icono_texto a:hover .content{
	background: #E91E3C;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	height: 100%;
}
.page-unete-a-ds .caja_icono_texto a:hover .content{
	background: #fff;
}
.caja_icono_texto a:hover .content > *{
	/* position: relative;
	z-index: -1; */
} 
.caja_icono_texto a:hover .content h4 span{
	color: #fff !important;
}
.page-unete-a-ds .caja_icono_texto a:hover .content h4 span, .page-unete-a-ds .caja_icono_texto a:hover .content p span{
color: #E91E3C !important; 	
}
.caja_icono_texto .row-eq-height div[class^="col-"] > div{
	height: 100%;
} 
.boxborder_icono_texto{
	padding: 30px 0px;
}
.boxborder_icono_texto .container div[class^="col-"] .content{
	background: #ffffff;
	padding: 30px 30px 16px;
	    height: 100%;
}
.boxborder_icono_texto .container div[class^="col-"] .content img{
	height: 55px;
}
.boxborder_icono_texto .container div[class^="col-"] .content h5{
	color: #AAAAAA;
}
.mod_images .row .content{
	position: absolute;
	left: 40px;
	bottom: 40px;
	bottom: 10px;
    z-index:1;
    color: #fff;
}
.mod_images .row .content p:nth-child(2){
	margin-bottom: 0px;
}
.mod_images .row .content h3{
	margin-bottom: 0px;
}
.mod_images .row .content img{
	opacity: 0.8;
}
.mod_images .row .col-md-4{
	    margin-bottom: 40px;
}
#boxiconinfo .col-md-4 > a > div{
	height: 100%;
}
div.wpcf7-validation-errors{
	border: 0px; 
}
.mod_images .velado{
	    position: absolute;
    top: 0;
    background: rgba(18,2,53,0);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(18,2,53,0)), color-stop(50%, rgba(18,2,53,0)), color-stop(100%, rgba(18,2,53,1)));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(18,2,53,0)), color-stop(50%, rgba(18,2,53,0)), to(rgba(18,2,53,1)));
    background: linear-gradient(to bottom, rgba(18,2,53,0) 0%, rgba(18,2,53,0) 50%, rgba(18,2,53,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#120235', endColorstr='#120235', GradientType=0 );
    left: 15px;
    right: 15px;
    bottom: 0px;
}
/*
---------------------------------------------------------------------------------------------------------------------
HOME
---------------------------------------------------------------------------------------------------------------------
*/
#secone_home .col-md-7:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: red;
	z-index: -1;
    -webkit-transform: translate(15%,25%);
            transform: translate(15%,25%);
}
#secone_home hr.line-title{
	margin-bottom: 150px;
	    margin-right: 20px;
}
#secone_home hr + h5{
	margin-top: -5px;
}
#secone_home a.flecha{
	    margin-top: 20px;
}
#sectwo_home .col-md-4 > h4{
	    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
}
#sectwo_home .col-md-4 > a.flecha{
	    position: absolute;
    bottom: 40px;
    right: 40px;
}
a.flecha{
	color: #AAAAAA;
	display: block;
	line-height: 23px;
}
a.flecha span{
	margin-left: 10px;
}
a.flecha span .img-hover{
	display: none;
}
a.flecha:hover span img{
	display: none;
}
a.flecha:hover span .img-hover{
	display: inline;
}
a.flecha:hover{
	text-decoration: none;
	color: #E91E3C
}

/*
---------------------------------------------------------------------------------------------------------------------
SERVICES DETAILS
---------------------------------------------------------------------------------------------------------------------
*/
.page-servicios .mod_images .header-section{
	margin-bottom: 40px;
}
#sectwo_servicesdetails{
	padding-top: 80px;
}
#sectwo_servicesdetails .col-md-5{
    position: relative;
    left: 8.33%;
    z-index: 2;
}
#sectwo_servicesdetails .col-md-5 .content{
    position: absolute;
    top: 50%;
    padding: 40px;
    background: #fff;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
#sectwo_servicesdetails .col-md-5 .content h4{
	margin: 0px auto;
	    margin-top: 5px;
}
#sectwo_servicesdetails .col-md-7{
    position: relative;
    right: 8.33%;
}
#secmenu_servicesdetails, #secmenu_testjur{
	background-color: #E91E3C;
	padding: 0px;
}
#menu-services-details li{
	width: 33%;
    float: left;
    padding: 30px;
    border-left: 1px solid rgba(255,255,255,0.5);
    position: relative;
}
#menu-services-details li a, #menu-services-details li p{
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	position: relative;
	margin-bottom: 0px;
}
#menu-services-details li.current-menu-item{
	border: 0px;
	background-color: #CB1732;
	    padding-left: 40px;
}
#menu-services-details li.current-menu-item a, #menu-services-details li.current-menu-item p{
	color: rgb(255,255,255);
	text-decoration: none;
	
}
#menu-services-details li.current-menu-item a:before{
	content: "";
	    background: #fff;
    width: 1px;
    height: 30px;
    display: block;
    position: absolute;
    left: -10px;
}
#menu-services-details-2 li{
	width: 50%;
    float: left;
    padding: 30px;
    border-left: 1px solid rgba(255,255,255,0.5);
    position: relative;
}
#menu-services-details-2 li a, #menu-services-details-2 li p{
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	position: relative;
	margin-bottom: 0px;
}
#menu-services-details-2 li a, #menu-services-details li a{
	position: absolute !important;
    left: 30px;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    margin-top: 0px;
    cursor: auto;
}
#menu-services-details-2 li p, #menu-services-details li p{
	margin-top: 28px;
}
#menu-services-details-2 li.current-menu-item{
	border: 0px;
	background-color: #CB1732;
	    padding-left: 40px;
}
#menu-services-details-2 li.current-menu-item a, #menu-services-details-2 li.current-menu-item p{
	color: rgb(255,255,255);
	text-decoration: none;
	
}
#menu-services-details-2 li.current-menu-item a:before{
	content: "";
	    background: #fff;
    width: 1px;
    height: 30px;
    display: block;
    position: absolute;
    left: -10px;
}
#secmenu_testjur{
	background-color: #E91E3C;
}
#menu-jurado-y-testimonios li{
	width: 50%;
    float: left;
    padding: 30px;
    border-left: 1px solid rgba(255,255,255,0.5);
    position: relative;
}
#menu-jurado-y-testimonios li a, #menu-jurado-y-testimonios li p{
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	position: relative;
	margin-bottom: 0px;
}
#menu-jurado-y-testimonios li a{
	    position: absolute !important;
    left: 30px;
        top: 0;
    bottom: 0;
    right: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    margin-top: 0px;
    cursor: auto;
}
#menu-jurado-y-testimonios li p{
	    margin-bottom: 0px;
    margin-top: 28px;
}
#menu-jurado-y-testimonios li.current-menu-item a{
	left: 40px;
}
#menu-jurado-y-testimonios li.current-menu-item{
	border: 0px;
	background-color: #CB1732;
	    padding-left: 40px;
}
#menu-jurado-y-testimonios li.current-menu-item a, #menu-jurado-y-testimonios li.current-menu-item p{
	color: rgb(255,255,255);
	text-decoration: none;
	
}
#menu-jurado-y-testimonios li.current-menu-item a:before{
	content: "";
	    background: #fff;
    width: 1px;
    height: 30px;
    display: block;
    position: absolute;
    left: -10px;
}


.page-id-36 .contenido, .page-id-260 .contenido{
	
	    background: rgba(18,2,53,0.5);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(18,2,53,0.5)), color-stop(100%, rgba(18,2,53,1)));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(18,2,53,0.5)), to(rgba(18,2,53,1)));
    background: linear-gradient(to bottom, rgba(18,2,53,0.5) 0%, rgba(18,2,53,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#120235', endColorstr='#120235', GradientType=0 );
      background-image: url(/wp-content/uploads/2017/06/consultoria-ds.jpg);
    background-size: cover;
}
 .page-id-260 .contenido{
	 background-image: url(/wp-content/uploads/2017/06/estrategias-ds.jpg);
 }
.page-id-36 .contenido section, .page-id-260 .contenido section{
	background: transparent !important;
}
#sectwo_testjur .image-prof{
	    position: relative;
    top: 217px;
    right: -5.33%;
    z-index: 1;
    min-width: 150px;
        -webkit-transform: translateY(-25%);
                transform: translateY(-25%);
}
#sectwo_testjur .col-md-5 .content{
	    border: 1px solid;
    margin: 20px auto;
    padding:40px 60px;
        height: calc(100% - 40px);
}
#sectwo_testjur .col-md-5 .content:hover{
	border-color: #E91E3C;
}
#sectwo_testjur .col-md-5 .content label.cargo{
	text-transform: uppercase;
}
#sectwo_testjur .col-md-5 .content h3{
	    margin-bottom: 20px;
}
.page-id-36 .contenido h4, .page-id-36 .contenido p, .page-id-260 .contenido h4, .page-id-260 .contenido p{
	color: #fff !important;
}
 .page-id-260 .contenido h4{
	 font-size: 21px;
 }
#secone_somos{
	padding-bottom: 200px; 
}
#sectwo_somos .dar-altura .content{
	position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 40px;
    padding: 3% 40px;
}
#sectwo_somos .container > .row{
	    -webkit-transform: translateY(-50%);
	            transform: translateY(-50%);
    width: 100%;
    position: absolute;
    overflow: visible;
}
#sectwo_somos{
	padding-bottom: 40px;
	    overflow: visible;
}
#sectwo_somos .container{
	  /*  transform: translateY(-50%); */
}
#secvalores_somos{
	padding-top: 0px;
}
#secvalores_somos .col-md-3 .content{
	    border-top: 2px solid #000;
    padding: 20px 10px;
        min-height: 172px;
}
#secvalores_somos .col-md-3 .content h5{
	margin: 0px;
}
#secvalores_somos .col-md-3 .content p{
	color: #AAAAAA
}
.mod_images .super{
	    color: rgba(242, 242, 242, 0.5);
    position: absolute;
    z-index: 0;
    line-height: normal;
    -webkit-transform: translateY(-24%);
            transform: translateY(-24%);
}
.page-somos-ds .mod_images .row .col-md-3{
	margin-bottom: 40px;
}
.page-somos-ds .mod_images .header-section{
	margin-bottom: 40px;
}
.partners .col-md-4 .content{
	    padding: 30px;
    border: 1px solid #BBBBBB;
    padding-bottom: 0px;
    border-bottom: 0px;
        min-height: 280px;
    position: relative;
}
.partners .line-title{
	margin-bottom: 20px;
}
.partners h5{
	margin-top: 0px;
}
.partners .col-md-4 .content img{
	    display: block;
    margin: auto;
    margin-bottom: 30px;
    -webkit-transform: scale(0.5) translateY(-50%);
            transform: scale(0.5) translateY(-50%);
    
}
#main > section.partners.bg-light-grey > div > div:nth-child(2) > div:nth-child(2) > div > img{
	  -webkit-transform: scale(0.5);
	          transform: scale(0.5)
}
#main > section.partners.bg-light-grey > div > div:nth-child(2) > div:nth-child(4) > div > img{
	-webkit-transform: none;
	        transform: none;
}
.partners .col-md-4 .content .texto{
	    background: #fff;
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 182px;
}
.partners .col-md-4 .content .texto p{
	margin-bottom: 0px;
}
.somos_last{
	padding: 0px;
}
.somos_last .col-md-4 .content{
	    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}
.somos_last .col-md-4 .content img{
	margin-bottom: 20px;
}
section.ofertas, section.practicas{
	background-color: #efe1e4;
}
section.ofertas .panel.panel-default .panel-collapse, section.practicas .panel.panel-default .panel-collapse{
	border-top: 1px solid #E91E3C;
	margin-top: 20px;
}
section.ofertas .panel.panel-default .panel-collapse ul, section.practicas panel.panel-default .panel-collapse ul{
	color: #AAAAAA;
}
section.ofertas .panel.panel-default .panel-collapse strong, section.practicas .panel.panel-default .panel-collapse strong{
	font-family: 'HKGrotesk-Medium';
} 
.panel.panel-default{
	    padding: 20px;
	background: #fff;
	    margin-bottom: 20px;
}
.panel.panel-default h4{
	margin: 0px;
}
.panel.panel-default h4 a span img{
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.panel.panel-default h5{
	margin: 0px;
}
.panel.panel-default h4 > a:hover{
	text-decoration: none;
}
.page-unete-a-ds .large-background{
	    background-image: url(/wp-content/uploads/2017/05/unete_hero-ds.jpg);
    background-size: cover;
    background-position: center;
}
.page-unete-a-ds .large-background > section{
	background: transparent !important;
}
.unete-last{
	padding-top: 0px;
}
.unete-last .content{
	    max-width: 80%;
    margin: auto;
        position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}
#secone_contact{
	padding-top: 0px;
	padding-bottom: 0px;
	    overflow: visible;
}
#secone_contact .container-fluid{
	    -webkit-transform: translateY(-25%);
	            transform: translateY(-25%);
}
#secone_contact .content{
	padding: 40px 40px 20px;
	background: #fff;
	 min-height: 214px;
    margin-bottom: 20px;
    

}
#secone_contact .content h5{
	color: #120235;
	margin: 0px;
}
#secone_contact .content h5 span{
	color: #AAAAAA
}
.contact-last{
	padding-top: 0px;
	    margin-top: -100px;
	    background: #fff;
}
.contact-last .content{
	    max-width: 80%;
    margin: auto;
        position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
            
    width: 73%;
}

hr.contact-line{
	    width: 20px;
    float: left;
    border-top: 2px solid #E91E3C;
}
#sec_historicopremios hr.line-title{
	/* margin-bottom: 20px; */
}
#secone_contact .content > p:nth-child(3){
	color: #AAAAAA;
	    line-height: 24px;
}
.content-single_prof{
	padding-top: 160px;
}
.content-single_prof h1{
	    margin-bottom: 20px;
	    font-family: 'HKGrotesk-Light';
	    font-weight: lighter;
	    
}
.content-single_prof .col-md-8 .content{
	    border: 1px solid;
    padding: 40px;
}
.content-single_prof .col-md-8 .content label.cargo{
	text-transform: uppercase;
}
.content-single_prof .col-md-8 .content label.ant-line:before{
	    content: "";
    background: #E91E3C;
    width: 1px;
    height: 16px;
    display: block;
    position: absolute;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
}
.content-single_prof .col-md-8 .content .simple-image_prof{
	    margin-top: calc(-25% + 40px);
    width: 150px;
}
.content-single_prof .panel.panel-default{
	margin-bottom: 0px;
	    padding: 10px;
    padding-left: 0px;
}
#secone_premiods .col-md-5 .content{
	padding: 20px 40px;
}
#secone_premiods a.boton{
	width: 35%;
    min-width: 94px;
        margin-top: 20px;
}
#secone_premiods .obtener-altura > a.boton:nth-child(5){
	margin-right: 10px;
}
#secone_premiods .col-md-4{
	padding-top: 20px;
	padding-bottom: 20px;
}
#secone_premiods .col-md-5 .content ul{
	    list-style-type: circle;
    color: #fff;
    padding: 0px;
        list-style-position: inside;
}
#sectwo_premiods .col-md-3 .content{
	padding: 40px 20px;
	    min-height: 377px;
}
#sectwo_premiods .col-md-3 .content img{
	height: 65px;
}
.slider-premios .un-slide .pequenios{
	    margin-top: 40PX;
}
.slider-premios h3{
	margin-top: 0px;
}
.slick-slide img{
	margin: AUTO;
}
.slider-premios .slick-arrow{
	 position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -50px;
}
.slider-premios .slick-arrow.slick-disabled{
	opacity: 0.5;
	cursor: not-allowed;
}
.slider-premios .slick-arrow.next-arrow{
	left: auto;
	right: -50px;
}
form input, form select, form textarea{
	width: 100%;
	height: 40px;
	padding: 10px;
	background: #fff;
	border-radius: none;
	    border: 1px solid #DBDBDB;
}
form select{
	    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    background-color: transparent;
    border-radius: 0px;
    border: 1px solid #ccc;
    -webkit-transition: 200ms;
    transition: 200ms;
    background-image: url(/wp-content/themes/crepesandtheme/img/arrow-select.svg);
    background-position: calc(100% - 20px) 50%;
    background-repeat: no-repeat;
}
form .politicas input{
	width: auto;
	height: auto;
}
form label{
	width: 100%;
}
form input:focus{
	outline: none;
}

.checkbox input[type="checkbox"]{
  opacity: 0;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 1;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  margin: 0px;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 14px;
  height: 14px;
}
  .checkbox  label{
      display: inline-block;
      vertical-align: middle;
      margin-top: 0px;
      padding-left: 24px;
  }
  .checkbox  label:before{
      content: " ";
      -moz-appearance: none;
      appearance: none;
      -webkit-appearance: none;
      position: absolute;
      left: 0px;
      top: 0px;
      display: inline-block;
      width: 14px !important;
      height: 14px !IMPORTANT;
      border: 1px solid rgba(60,61,60,0.1);
      border-radius: 2px;
      margin: 0px;
      margin-right: 10px;
      vertical-align: middle;
      -webkit-transition: all 200ms;
      transition: all 200ms;
  }
  .checkbox input[type="checkbox"]:hover + label:before{border: 1px solid rgba(60,61,60,1);}
.checkbox input[type="checkbox"]:checked + label:after{
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: inline-block;
  margin: 0px;
  margin-right: 10px;
  cursor: pointer;
  width: 14px;
  height: 14px;
  color: #fff;
  background-color: #E91E3C;
  content: "\f00c";
    font: normal normal normal 13px/1 FontAwesome;
}
footer .right img{
	margin-left: 20px;
}

.blog #main, .single-post #main, .archive #main{
	background-color: #f2f2f2;
}
.blog #main > .container, .archive #main > .container, .single-post #main > .container{
	    padding-top: 30px;
	    padding-bottom: 30px;
}
.essb_links{
	margin-bottom: 0px !important;
}
.sidebar_blog, #text-2{
	color:#AAAAAA; 
}
.col-md-8 #text-2{
	margin-bottom: 40px;
}
.sidebar_blog > div{
    border-bottom: 1px solid #aaaaaa;
    padding-bottom: 20px;
}
.sidebar_blog > div:last-child{
    border-bottom: 0px;
}
.sidebar_blog h4{
	margin-bottom: 0px;
}
.widget_categories ul{
    list-style: none;
    padding: 0px;
}
.widget_categories ul li{
	    margin: 10px 5px;
    display: inline-block;
}
.widget_categories ul li a{
	border: 1px solid;
    padding: 5px 10px;
    border-radius: 25px;
    color: #AAAAAA;
    font-weight: 100;
}
.tagcloud a, .terms-post a{
	    border: 1px solid;
    padding: 5px 10px;
    border-radius: 25px;
    color: #AAAAAA;
    font-weight: 100;
    margin: 10px 5px;
    display: inline-block;
    font-size: 14px !important;
}
footer p.small a{
	    font-size: 12px;
    line-height: 14px;
        font-family: 'HKGrotesk-Light';
}
.single-post #main > .container .bg-white{
	    -webkit-box-shadow: 0 2px 4px 0 #DDDCDC;
	            box-shadow: 0 2px 4px 0 #DDDCDC;
}
.single-post #main > .container .bg-white .cont-entrada{
	color: #AAAAAA;
	padding-bottom: 20px;
}
.page-implantacion .boxborder_icono_texto .container .col-md-3 .content p.txt-cnt{
	padding-top: 80px;
}
.page-implantacion .boxborder_icono_texto .container .col-md-3 .content p.txt-cnt a.boton{ 
	    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.page-consultoria-de-implantacion .boxborder_icono_texto .container .col-md-4 .content p.txt-cnt{
	padding-top: 80px;

}
.page-consultoria-de-implantacion .boxborder_icono_texto .container .col-md-4 .content p.txt-cnt a.boton{ 
	    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.page-consultoria-de-transformacion-de-modelos-de-negocio .caja_icono_texto  .content img{
	height: 55px;
}
@media (max-width: 767px) {
	.row-eq-height{
		display: block;
	}
	h2, .h2{
		font-size: 28px;
		line-height: 35px;
	}
	.caja_icono_texto .row-eq-height div[class^="col-"] {
    margin-bottom: 20px;
    }
	p.super{
		font-size: 70px;
	}
	.breadcrumbs{
		padding-left: 15px;
		padding-right: 15px;
	}
	.hamburger{
		right: 15px;
	}
	section{
		padding: 40px 0px;
	}
	#secone_somos{
		padding: 40px 0px;
	}
	.dar-altura-padre, .dar-altura, .dar-altura-2{
		height: auto !important;
	}
	#sectwo_somos .dar-altura .content{
		position: static;
	}
	#sectwo_somos .container > .row{
		position: static;
		-webkit-transform: none;
		        transform: none;
		width: auto;
	}
	#sectwo_somos{
		padding: 0px;
	}
	.unete-last .content{
		position: static;
    -webkit-transform: none;
            transform: none;
    padding-top: 20px;
	}
	.page-implantacion .boxborder_icono_texto .container .col-md-3 .content h4 br{
	display: none;
}
	.image-translate{
		position: static;
		    padding: 15px 30px;
	}
	.no-padd_mobile{
		padding: 0px;
	}
	#secvalores_somos .col-md-3 .content{
		margin-bottom: 10px;
	}
	.mod_images .super{
		-webkit-transform: translateY(70%);
		        transform: translateY(70%)
	}
	#sectwo_premiods .col-md-3 .content{
		    margin-bottom: 20px;
    height: auto !important;
    min-height: 1px;
	}
	.slider-premios .slick-arrow{
		    width: 30px;
    left: 0;
    top: 0;
    -webkit-transform: none;
            transform: none;
    z-index: 1;
	}
	.slider-premios .slick-arrow.next-arrow{
		right: 0px;
	}
	#sectwo_testjur .image-prof{
		     top: 0px !important;
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
    left: 0;
	}
	#sectwo_testjur .col-md-5 .content{
		margin-top: 0px;
	}
	#menu-jurado-y-testimonios li{
		width: 100%;
	}
	.image-prof img{
		width: 150px;
		display: block;
    margin: auto;
	}
	.somos_last .col-md-4 .content{
		position: static;
		-webkit-transform: none;
		        transform: none;
		    padding: 40px;
	}
	.mod_images .row .col-md-4 .content {
		    left: 30px;
	}
	.mod_images .row .col-md-4 .content h3{
		font-size: 13px;
		    line-height: normal;
	}
	#secone_contact .container-fluid{
		-webkit-transform: none;
		        transform: none;
		padding-top: 20px;
	}
	.contact-last{
		margin-top: 0px;
	}
	.contact-last .content{
		position: static;
    -webkit-transform: none;
            transform: none;
    padding-top: 20px;
	}
	#menu-services-details li, #menu-services-details-2 li{
		width: 100%;
	}
	#sectwo_servicesdetails .col-md-5, #sectwo_servicesdetails .col-md-7, #sectwo_servicesdetails .col-md-5 .content{
		position: static;
		-webkit-transform: none;
		        transform: none;
	}
	#sectwo_servicesdetails{
		padding-top: 40px;
		    padding-bottom: 0px;
	}
	.boxborder_icono_texto .container div[class^="col-"]{
		margin-bottom: 20px;
	}
	.content-single_prof .col-md-8 .content .simple-image_prof{
		margin-top: 0px;
		    -webkit-transform: translateY(calc(-50% - 40px));
		            transform: translateY(calc(-50% - 40px));
	}
	#secone_premiods .col-md-5 .content ul{
		    list-style-position: outside;
	}
	.content-single_prof h1{
		    margin-top: -75px;
		        font-size: 40px;
    line-height: normal;
	}
	footer .left, footer .right{
		float: none;
		text-align: center;
		display: block;
	}
	.grid-sizer, .grid-item{
		width: 100%;
	}
	.page-id-36 .contenido, .page-id-260 .contenido{
	background-position: right center;
	}
	.page-template-template-details-services section.header-image{
		background-position: 620px center;
	}
}