@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-SemiBold.eot');
    src: url('fonts/WorkSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/WorkSans-SemiBold.woff2') format('woff2'),
        url('fonts/WorkSans-SemiBold.woff') format('woff'),
        url('fonts/WorkSans-SemiBold.ttf') format('truetype'),
        url('fonts/WorkSans-SemiBold.svg#WorkSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Bold.eot');
    src: url('fonts/WorkSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/WorkSans-Bold.woff2') format('woff2'),
        url('fonts/WorkSans-Bold.woff') format('woff'),
        url('fonts/WorkSans-Bold.ttf') format('truetype'),
        url('fonts/WorkSans-Bold.svg#WorkSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Regular.eot');
    src: url('fonts/WorkSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/WorkSans-Regular.woff2') format('woff2'),
        url('fonts/WorkSans-Regular.woff') format('woff'),
        url('fonts/WorkSans-Regular.ttf') format('truetype'),
        url('fonts/WorkSans-Regular.svg#WorkSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {	
	--white: #ffffff;
	--blue: #26a2b7;
	--black: #213d46;
	--hover: #1e8495;
}
html, body{
	height: 100%;
}
body {
	background: #fff;
	font-family: 'Work Sans', sans-serif;
	font-size: 17px;
	color: var(--black);
	font-weight: normal;
	padding-top: 30px;
}
/* Para evitar que aparezcan elementos no deseados del widget */
.goog-logo-link, .goog-te-gadget span, .goog-te-banner-frame {
    display: none !important;
}
.goog-te-gadget {
    font-size: 0;
}
.language-flags img {
  width: 25px !important;
  height: 16px !important;
}
.lang {
	background: #f0f0f0;
	border-bottom: #e9e9e9;
	padding-top: 6px;
	padding-bottom: 6px;
	text-align: right;
	margin-bottom: 10px;
}
.container, .container-fluid {
	width: 1380px;
	max-width: 100%;
	margin: 0 auto;
}
.clear, .clearfix {
	display: block;
	clear: both;
}
.height10 {
	height: 10px;
}
.height20 {
	height: 20px;
}
.height30 {
	height: 30px;
}
.height50 {
	height: 50px;
}
img {
	max-width: 100%;
	height: auto;
}
.black {
	color: var(--black);
}
.white {
	color: var(--white);
}
.blue {
	color: var(--blue);
}
.bg-black {
	background: var(--black);
}
.bg-white {
	background: var(--white);
}
.bg-blue {
	background: var(--blue);
}
a, button {
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
a, a:hover, a:focus, a:active {
	text-decoration: none;
	color: var(--blue);
}
.boton {
	text-transform: none;
	display: inline-block;
	color: var(--white);
	background: var(--blue);
	border: 1px solid var(--blue);
	padding: 10px 40px;
	font-weight: normal;
	font-family: 'Work Sans', sans-serif;
	border-radius: 24px;
}
.boton:hover, .boton:focus {
	color: var(--white);
	background: var(--hover);
}
.boton2 {
	text-transform: none;
	display: inline-block;
	color: var(--blue);
	background: var(--white);
	border: 1px solid var(--white);
	padding: 10px 40px;
	font-weight: normal;
	font-family: 'Work Sans', sans-serif;
	border-radius: 24px;
}
.boton3 {
	text-transform: none;
	display: inline-block;
	color: var(--white);
	background: var(--blue);
	border: 1px solid var(--blue);
	padding: 10px 40px;
	font-weight: normal;
	font-family: 'Work Sans', sans-serif;
	border-radius: 24px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
}
h2, h3, h4 {
	margin-bottom: 20px;
}


/**** HEADER ****/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background:#fff;
	z-index: 100;
	padding-bottom: 8px;
	border-bottom: 1px solid #f4f4f4;
}
.relative {
	position: relative;
}
.logo {
	width: 400px;
}
.hamburger {
	position: absolute;
	right: 15px;
	top: 8px;
	font-size: 30px;
	color:var(--black);
	cursor: pointer;
}
.sidenav {
	height: 100%; 
	width: 0; 
	position: fixed; 
	z-index: 1000;
	top: 0; 
	right: 0;
	background-color: #fff;
	overflow-x: hidden; 
	padding-top: 60px; 
	transition: 0.3s;
	box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.3);
}
.content-menu {
	padding-left: 30px;
	padding-right: 30px;
}
.content-menu a {
	white-space: nowrap;
	display: block;
	border-bottom: 1px solid #f0f0f0;
	padding-top: 10px;
	padding-bottom: 10px;
	color:var(--black);
}
.content-menu a:hover {
	color:var(--blue);
}
.closebtn {
	cursor: pointer;
	color:var(--black) !important;
	position: absolute;
	top: 0;
	right: 20px;
	font-size: 40px;
}
.slider {
	background: url(images/slider.jpg) no-repeat center center;
	background-size: cover;
	padding-top: 250px;
	padding-bottom: 250px;
	text-align: center;
}
.slider h1 span {
	font-weight: normal;
}
h1, .h1 {
	font-size: 48px;
	line-height: 60px;
}
.buscador {
	background:#fff;
	position: relative;
	padding: 8px;
	border-radius: 32px;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
}
.buscador input {
	border: none;
	outline: none;
	padding: 10px;
	width: 100%;
	text-align: center;
}
.buscador button {
	position: absolute;
	right: 8px;
	top: 8px;
	z-index: 10;
}
.pright {
	padding-right: 30px;
}
.pleft {
	padding-left: 30px;
}
.intro {
	padding-top: 100px;
}
.bg-grey {
	background:#f2f2f2;
}
video {
	border-radius: 18px;
}
.caso {
	display: block;
	width: 450px;
	height: 350px;
	max-width: 100%;
	border-radius: 18px;
	position: relative;
	margin-bottom: 40px;
	overflow: hidden;
}
.caso div {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	color:#fff;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}
.caso p.titulo {
	font-size: 24px;
	line-height: 32px;
}
.parallax {
	background: url(images/parallax.png) no-repeat top center;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 80px;
}
.parallax h2 {
	font-weight: normal;
}
.parallax img {
	display: none;
}
em {
	color:#777;
	font-size: 0.8em;
}
footer {
	background:#77787c;
	padding-top: 50px;
	padding-bottom: 30px;
	color:#fff;
	font-size: 16px;
}
footer a {
	color:#fff !important;
}
footer a.redes {
	display: inline-block;
	background: var(--blue);
	width: 50px;
	height:50px;
	border-radius: 50px;
	margin: 0 4px 0 0;
	text-align: center;
	font-size: 20px;
	line-height: 50px;
}
.logofooter {
	text-align: right;
}
.logofooter img {
	width: 350px;
}
.legal span {
	font-size: 11px;
	position: relative;
	top: -2px;
	margin: 0 5px;
}
.back-to-top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	border-radius: 9px;
	background: var(--blue);
	text-align: center;
	font-size: 28px;
	width: 46px;
	height: 46px;
	line-height: 42px;
	color:#fff !important;
}
.legal h3 {
	font-weight: 600;
	line-height: 30px;
}
.legal {
	font-size: 17px;
}
.search-filters {
	background:#f0f0f0;
	border-radius: 30px;
	padding: 10px;
}
.search-filters .row {
	margin: 0 -8px;
}
.search-filters .col-sm-3 {
	padding: 0 8px;
}
.search-filters .col-sm-4 {
	padding: 0 8px;
}
.search-filters select {
	background:#fff;
	padding: 10px 15px;
	border-radius: 24px;
	width: 100%;
	border: 1px solid #e9e9e9;
}
#html5-watermark, .html5-playpause, .html5-title-prefix {
	display: none !important;
}
#html5-close {
	background: #111;
  	width: 30px;
  	height: 30px;
	border-radius: 50%;
  	border: 2px solid #fff;
}
.videos {
	margin-bottom: 40px;
	background:var(--blue);
	padding: 20px 20px 10px 20px;
	border-radius: 18px;
	color:#fff;
}
.content-videos {
	min-height: 160px;
}
.content-videos .titulo {
	margin-top: 15px;
	font-size: 21px;
	line-height: 29px;
}
.actions a img {
	width: 55px;
	margin-right: 1px;
}
.ruta {
	text-align: right;
	color: var(--blue);
	font-size: 15px;
}
.ruta img {
	width: 32px;
	height: 32px;
	margin-right: 2px;
}
.barra-acciones {
	background: #19adc7;
	font-size: 14px;
	line-height: 18px;
	border-radius: 40px;
	overflow: hidden;
}
.barra-acciones div.bton {
	display: inline-block;
	float:left;
	width: 12.5%;
	text-align: center;
}
.barra-acciones a {
	-webkit-display: flex;
	display:flex;
	height: 54px;
	align-items: center;
	justify-content: center;
	text-align: center;
	color:#fff !important;
}
.barra-acciones a.active {
	background:#13869a;
}
h1.titulo-caso {
	font-weight: 500;
	line-height: 1.1em;
}
p.txtblue {
	color:var(--blue);
	margin-bottom: 3px;
}
.imagen {
	border-radius: 25px;
}
.monigote {
	text-align: center;
	padding-top: 20px;
}
.monigote img {
	width: 150px;
	max-width: 50%;
}
.evaluacion h4 {
	font-weight: normal;
	color:var(--blue);
	margin-bottom: 10px;
}
.myrow {
	margin: 0 -10px;
}
.cols5 {
	float: left;
	width: 20%;
	margin-bottom: 24px;
	padding: 0 10px;
}
.myrow .col-sm-3 {
	padding: 0 10px;
}
.img_galeria {
	display: block;
	width: 100%;
	height: 250px;
	border-radius: 20px;
	margin-bottom: 10px;
}
.img_galeria2 {
	display: block;
	width: 100%;
	height: 180px;
	border-radius: 20px;
	margin-bottom: 10px;
}
img.zoom {
	width: 30px;
}
.detallecaso {
	font-size: 16px;
}
.contenidos {
	position: relative;
}
.contenidos a.prev {
	color:var(--blue);
	position: absolute;
	left: -20px;
	font-size: 50px;
	top: 150px;
}
.contenidos a.next {
	color:var(--blue);
	position: absolute;
	right: -20px;
	font-size: 50px;
	top: 150px;
}
.barra-acciones2 {
	display: none;
}
.barra-acciones2 select {
	width: 100%;
	border: 1px solid #d0d0d0;
	padding: 12px;
	background:#f0f0f0;
	border-radius: 8px;
}

@media(max-width:991px) {
	.barra-acciones {
		display: none;
	}
	.barra-acciones2 {
		display: block;
	}
	.contenidos a.next {
  		right: 0;
  	}
  	.contenidos a.prev {
  		left: 0;
  	}
  	#div1, #div2, #div3, #div4, #div5, #div6, #div7, #div8 {
  		padding-left: 32px !important;
  		padding-right: 32px !important;
  	}
}

@media(max-width:767px) {
	body {
 		font-size: 16px;
  	}
	.logo {
		width: 300px;
	}
	.hamburger {
		top: 0;
		font-size: 28px;
	}
	h1, .h1 {
 		font-size: 38px;
  		line-height: 50px;
	}
	.intro {
 		padding-top: 10px;
	}
	.h2, h2 {
  		font-size: 28px;
	}
	.parallax {
		padding-right: 15%;
	}
	.logofooter {
 		text-align: left;
  		margin: 30px 0 20px 0;
	}
	.caso p.titulo {
  		font-size: 20px;
 		line-height: 28px;
	}
	.pleft {
 		padding-left: 15px;
	}
	.pright {
		padding-right: 15px;
	}
	h2.boton2, h2.boton3 {
		font-size: 20px;
	}
	.search-filters select {
  		margin-bottom: 10px;
	}
	.search-filters {
 		padding: 10px 10px 0 10px;
	}
	.videos {
		padding: 16px;
	}
	.content-videos {
		min-height: 60px;
	}
	.cols5 {
 		width: 33.33%;
  	}
  	.img_galeria {
 		height: 200px;
  	}
  	.mb30-767 {
  		margin-bottom: 30px;
  	}
  	.ruta {
		line-height: 8px;
	}
}

@media(max-width: 498px) {
	.slider {
		background: url(images/slider.jpg) no-repeat center center;
		background-size: cover;
  		padding-top: 130px;
  		padding-bottom: 130px;
  	}
  	h1, .h1 {
   		font-size: 32px;
    	line-height: 40px;
  	}
  	.slider .buscador button {
  		padding-left: 18px;
  		padding-right: 18px;
	}
	.slider .buscador input {
  		padding: 10px 36px 10px 10px;
  	}
  	.caso {
  		height: 290px;
  	}
  	.caso p.titulo {
   		font-size: 18px;
    	line-height: 24px;
  	}
  	.parallax {
   		padding-right: 0;
   		padding-bottom: 0;
  	}
  	.parallax img {
  		margin-top: 30px;
		display: block;
		width: 280px;
		margin-left:auto;
		margin-right:auto;
	}
	footer a.redes {
  		width: 44px;
  		height: 44px;
  		border-radius: 44px;
  		margin: 0 3px 0 0;
  		line-height: 44px;
	}
	.legal {
		font-size: 16px;
	}
	.content-videos .titulo {
		font-size: 20px;
		line-height: 26px;
	}
	h1.titulo-caso {
 		font-size: 26px;
	}
	.cols5 {
 		width: 50%;
  	}
  	.img_galeria, .img_galeria2 {
   		height: 140px;
  	}
  	.contenidos a.next, .contenidos a.prev {
   		font-size: 40px;
  	}
}