@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;500&family=Montserrat:ital,wght@0,300;0,600;1,300&display=swap');

/*
font-family: 'IBM Plex Sans', sans-serif;
font-family: 'Montserrat', sans-serif;
*/


* {
	box-sizing: border-box;
}


body {
	margin:0;
    font-family: 'Montserrat', sans-serif;
	font-size:10px;
	color:#363636;
	font-weight:300;
    background: #ffffff;
    overflow: hidden;
    min-height: 100vh;
}
strong {
	font-weight:600;
}
input, textarea {
    box-shadow: none !important;
    outline: 0;
}
a { text-decoration:none; }

h1, h2, h3, h4, h5, h6, p {
    font-weight: normal;
    margin: 0;
}

img {
	max-width:100%;
}
.table { display: table; width: 100%; height: 100%; }
.cell { display: table-cell; vertical-align: middle; }
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#loading {
	position: fixed;
	z-index: 100000;
	background: rgba(37,46,48,1);
	left: 0; top: 0; width: 100%; height: 100%;
}
#loading svg {
	position: absolute;
	width: 11em; height: 11em;
	left: 50%; top: 50%;
    margin-left: -5.5em; margin-top: -5.5em;
	transform-origin: center;
	-webkit-animation-name: loadinganim;
    -webkit-animation-duration: 1s;
    animation-name: loadinganim;
    animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
#loading svg .st0{opacity:0.2;fill:none;stroke:#FFFFFF;stroke-width:3;stroke-miterlimit:10;}
#loading svg .st1{fill:none;stroke:#FFFFFF;stroke-width:3;stroke-miterlimit:10;}
@keyframes loadinganim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.popupContainer {
	background: rgba(19,24,25,0.85);
	position: fixed;
	left: 0; top: 0;
	width: 100%; height: 100%;
	overflow-y: auto;
	display: none;
	z-index: 100000;
}
.popupContainer .overlay {
	position: absolute;
	cursor: pointer;
	left: 0; top: 0;
	width: 100%; height: 100%;
	cursor: pointer;
}
.popupContainer .table {
    display: table;
	width: 100%; height: 100%;
}
.popupContainer .table .cell {
	display: table-cell; vertical-align: middle;
	text-align: center;
	position: relative;
}
.popupContainer .popup {
	display: inline-block;
	background: #ffffff;
	width: 100%;
	max-width: 95em;
	box-sizing: border-box;
	position: relative;
	z-index: 10;
	transform: scale(1);
    text-align: left;
    margin: 0;
}
.popupContainer .popup .cerrar {
	position: absolute;
	top: 0; right: 0;
	transition: all 0.2s;
	cursor: pointer;
    background: #323D43;
    width: 6em; height: 6em;
    z-index: 100;
}
.popupContainer .popup .cerrar:hover {
	background-color: #3088F4;
}

.popupContainer .popup .cerrar svg {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
}

.popupContainer .popup .cerrar svg .st0{
    fill:none;stroke:#FFFFFF;stroke-miterlimit:10;
}

#popupTrabajo {
    max-width: 95em;
}
#popupTrabajo .contenido {
    padding: 8em;
}
#popupTrabajo .contenido h5 {
    font-weight : bold;
    font-size : 3em;
    line-height: 1.2em;
    color : #3088F4;
    margin: 0.25em 0;
}
#popupTrabajo .contenido h4 {
    font-size : 3em;
    line-height: 1.2em;
    color : #323D43;
    margin: 0.25em 0;
}
#popupTrabajo .contenido .texto {
    font-size : 1.4em;
    line-height : 23px;
    color : #323D43;
    margin: 2em 0;
}
#popupTrabajo img {
    width: 100%;
    display: block;
}


/*#principal {
    position: relative;
    min-height: 100vh;
}*/

.seccion {
    background: #ffffff;
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100vh;
    text-align: left;
    overflow: hidden;
    display: none;
}
.container  {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;    
    height: 100vh;
}
.container .content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 6em 18em;
    z-index: 1;
}


.menu {
    background: #ffffff;
    position: fixed;
    top: 0; right: 0;
    padding-right: 14em;
    padding-left: 3em;
    z-index: 1000;
}
.menu .boton {
    font-family: 'IBM Plex Sans', sans-serif;
    display: inline-block; vertical-align: middle;
    font-weight : normal;
    font-size : 1.4em;
    line-height : 1em;
    letter-spacing : 0.01em;
    color : #7c7c7c;
    padding: 2.5em 1.5em;
    margin-right: 0em;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
.menu .boton:hover,
.menu .boton.activo {
    color : #2D383C;
}
.menu .boton.activo {
    font-weight: 500;
}
.menu .boton::before {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 0.5em;
    background: #3088f4;
    transition: all 0.3s;
    opacity: 0;
    transform: scaleX(0.5);
}
.menu .boton.activo::before {
    transform: scaleX(1);
    opacity: 1;
}

.menu .idiomas {
    display: inline-block; vertical-align: middle;
    padding-left: 4em;
}

.botonIdioma {
    display: inline-block; vertical-align: middle;
    font-weight : bold;
    font-size : 1.3em;
    line-height : 2.7em;
    width: 2.7em;
    vertical-align: middle;
    text-align: center;
    letter-spacing : 0.01em;
    color : #7c7c7c;
    margin-right: 0.6em;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #ffffff;
    border-radius: 0.4em;
    padding: 0 !important;
}
.botonIdioma:hover {
    color : #3088F4;
}
.botonIdioma.activo {
    border-color: #3088F4;
    color : #3088F4;
}


#menuHamburguesa {
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    transition: all 0.3s;
}
#menuHamburguesa.disabled {
    
}
#menuHamburguesa .botonMenu {
    position: absolute;
    right: 0; top: 0;
    width: 10.4em;
    height: 10.4em;
    background: #3088F4;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
}
#menuHamburguesa.disabled .botonMenu {
    pointer-events: none;
    transform: scale(0);
}
#menuHamburguesa .botonMenu svg {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 4.2em; height: 3.6em;
}
#menuHamburguesa .botonMenu svg .st0{
    fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;
}

#menuHamburguesa.activo .botonMenu {
    background: #323D43;
    transform: scale(0.75);
}
#menuHamburguesa .botonMenu.disable {
    opacity: 0;
    transform: scale(0);
    
}

#menuHamburguesa .desplegable {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 37em;
    transform: translateX(37em);
    background: #ffffff;
    pointer-events: all;
    overflow-y: auto;
}
#menuHamburguesa .desplegable div {
    padding: 11em 5.5em 5.5em;
}
#menuHamburguesa .desplegable div.idiomas {
    padding: 5em 0 0;
}

#menuHamburguesa .desplegable .boton {
    display: block;
    font-size : 1.9em;
    line-height : 1em;
    text-transform : uppercase;
    color : #323D43;
    font-stretch: condensed;
    cursor: pointer;
    padding: 1em 0;
    transition: all 0.3s;
}
#menuHamburguesa .desplegable .boton:hover,
#menuHamburguesa .desplegable .boton.activo {
    color: #3088F4;
}
#menuHamburguesa .desplegable nav {
    margin-bottom: 4.5em;
}




.footerContainer {
    position: fixed;
    left: 0; top: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

footer {
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    background: #000000;
    z-index: 100000;
    display: block;
    pointer-events: all;
	min-height: 20em;
}
footer .col {
    display: inline-block;
    vertical-align: middle;
}

#header {
	background: url(images/header_illus_fondo.png) center repeat-x;
	background-size: auto 100%;
}
#header .videoContainer {
    position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%,-50%);
	height: 100%;
	width: auto;
	max-width: none!important;
}
#header .videoContainer::before,
#header .videoContainer::after {
    content: "";
    position: absolute;
     top: 0;
    height: 100%;
    width: 4px;
    background: url(images/header_illus_fondo.png) center repeat-x;
	background-size: auto 100%;
}
#header .videoContainer::before {
    left: 0;
}
#header .videoContainer::after {
    right: 0;
}

#header .fondo {
	display: block;
    height: 100%;
    margin: 0 auto;
}
#header .videoContainer .top {
    content: "";
    position: absolute;
    top: -2px;
    height: 4px;
    width: 100%;
    background: #f1f1f1;
}
#header .logo {
	position: absolute;
	left: 15.6em;
	padding-top: 5em;
}
#header .logo img {
	/*width: 100%;*/
	/*max-width: 15em;*/
}

#header .contenido {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-28em);    
}
#header h1 {
    font-size : 5.0em;
    line-height : 1.01em;
    color : #323D43;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.4em;
}
#header h1 span {
    font-weight: 300;
    color: #3088f4;
}
#header p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size : 15px;
    line-height : 1.5em;
    color : #7C7C7C;
    font-weight: 300;
    text-align: center;
}
#header p strong {
    color: #3088f4;
    font-weight: 500;
}
#header .mobile {
    display: none;
    transform: translateY(-7em);
    position: relative;
    z-index: -1;
}
#header .mobile img,
#header .mobile video {
    width: 100%;
    height: auto;
}



/* ---------------------- SERVICIOS ---------------------- */
#servicios {
    background: #f0f0f0;
}


.titulo {
    font-weight: 300;
    font-size : 4.5em;
    line-height : 1.1em;
    color : #323D43;
    text-align: center;
    margin-bottom: 0.9em;
}
.titulo strong {
    font-weight: 300;
    color: #3088f4;
}


#servicios .titulo {
    text-align: left;
    padding: 0 0.25em;
}

#servicios .sliderServicios {
    width: 100%;
    padding: 0 0;
    margin: 0 0 3em;
}

#servicios .sliderServicios .item .bloque {
    background: #ffffff;
    border-radius: 1.5em;
    padding: 5.5em 4em;
    text-align: center;
    height: 100%;
    box-shadow: 0 0 1.6em 0 rgba(20,96,173,0.12);
    position: relative;
}
#servicios .sliderServicios .item .bloque .hidden {
    display: none;
}
#servicios .sliderServicios .item .bloque .bloque {
    position: absolute;
    left: 0; top: 50%; width: 100%;
    transform: translateY(-50%);
    height: auto;
    opacity: 0;
    height: 100%;
    /*transition: all 0.3s;*/
}

#servicios .sliderServicios .item .bloque .bloque .hidden {
    display: block;
}
#servicios .sliderServicios .item .bloque .bloque .txt {
    display: none;
}

#servicios .sliderServicios .item .bloque.noshadow {
    box-shadow: none;
}

#servicios .sliderServicios .item .bloque .icono {
    width: 17em;
    height: 17em;
    background: #3088f4;
    border-radius: 1000px;
    margin: 0 auto 4em;
    position: relative;
}
#servicios .sliderServicios .item .bloque .icono img {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
}
#servicios .sliderServicios .item .bloque h3 {
    font-size : 2.5em;
    line-height : 1em;
    color : #3088F4;
    font-weight: 300;
    margin-bottom: 0.4em;
}
#servicios .sliderServicios .item .bloque p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size : 14px;
    line-height : 1.5em;
    color : #7C7C7C;
    font-weight: 300;
}

#servicios .flechas {
    padding: 0 1.7em;
}
#servicios .flechas .container {
    height: auto;
    display: block;
    text-align: right;
}
#servicios .flechas .flecha {
    display: inline-block; vertical-align: top;
    width: 5.4em; height: 5.4em;
    position: relative;
    background: #3088f4;
    cursor: pointer;
    transition: all 0.3s;
}
#servicios .flechas .flecha svg {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 1.4em; height: 2.4em;
}

#servicios .flechas .flecha svg .st0{
    fill:none;stroke:#FFFFFF;stroke-miterlimit:10;
    transition: all 0.3s;
}

#servicios .flechas .flecha.der {
    background: #12499e;
}
#servicios .flechas .flecha:hover {
    background: #ffffff;
}
#servicios .flechas .flecha:hover svg .st0{
    stroke: #3088f4;
}


#about {
    background: #ffffff;
}
#about .foto {
    position: absolute;
    right: 0; top: 0;
    width: 50%;
    height: 100%;
    background: url(images/about_foto.jpg) center no-repeat;
    background-size: cover;
}
#about .contenido {
    position: absolute;
    left: 0; top: 0;
    width: 43%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    z-index: 1;
}
#about .contenido .content {
    vertical-align: middle;
    padding: 6em 9em 6em 17.5em;
    text-align: left;
    flex: 0 0 100%;
    max-width: 100%;
}
#about .contenido .titulo {
    text-align: left;
}
#about .contenido .intro {
    font-weight: 400;
    font-style : italic;
    font-size : 3em;
    line-height : 1.2em;
    color : #3088F4;
    max-width: 17.5em;
    margin-bottom: 1.2em;
}
#about .contenido .intro strong {
    font-weight: 400;
    color: #12499e;
}
#about .contenido .texto {
    font-family: 'IBM Plex Sans', sans-serif;    
    font-size : 15px;
    line-height : 1.5em;
    letter-spacing : 0.001em;
    color : #7C7C7C;
    max-width: 30em;
    margin-bottom: 2.5em;
}
#about .contenido .texto p {
    margin-bottom: 1em;
    font-weight: 300;
}

#about .fotos {
    position: absolute;
    right: 0; top: 0;
    width: 57%;
    height: 100%;
    background: #ffffff;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    padding-right: 16em;
    padding-top: 7em;
}
#about .fotos .content {
    vertical-align: middle;
    padding: 0;
    text-align: left;
    flex: 0 0 100%;
    max-width: 100%;
}
#about .fotos .item {
    padding: 1.2em;
    height: 100%;
    height: 54.5em;
}
#about .fotos .item img {
    height: 100%;
}


#about .flechas {
    text-align: right;
    padding: 0 1.2em;
}
#about .flechas .flecha {
    display: inline-block; vertical-align: top;
    width: 5.4em; height: 5.4em;
    position: relative;
    background: #3088f4;
    cursor: pointer;
    transition: all 0.3s;
}
#about .flechas .flecha svg {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 1.4em; height: 2.4em;
}

#about .flechas .flecha svg .st0{
    fill:none;stroke:#FFFFFF;stroke-miterlimit:10;
    transition: all 0.3s;
}

#about .flechas .flecha.der {
    background: #12499e;
}
#about .flechas .flecha:hover {
    background: #ffffff;
}
#about .flechas .flecha:hover svg .st0{
    stroke: #3088f4;
}



.botonGeneral {
    display: inline-block;
    font-weight : 600;
    font-size : 15px;
    line-height : 1em;
    letter-spacing : 0.001em;
    color : #3088F4;
    padding: 0.8em 1.8em 0.8em 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.botonGeneral svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1em; height: 1.1em;
    transition: all 0.3s;
}
.botonGeneral svg .st0 {
    fill:none;stroke:#3088F4;stroke-width:1.6405;stroke-miterlimit:10;
    transition: all 0.3s;
}
.botonGeneral:hover {
    color: #323d43;
}
.botonGeneral:hover svg {
    right: -0.7em;
}

.botonGeneral:hover svg .st0{
    stroke: #323d43;
}

#proyectos {
    background: #11448e;
}
#proyectos .columna.izq {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#proyectos .columna.izq .content {
    vertical-align: middle;
    padding: 6em 6em 6em 16em;
}
#proyectos .columna.izq .content.detalle {
    display: none;
}
#proyectos .columna.izq .titulo {
    color: #3088f4;
    text-align: left;
}
#proyectos .columna.izq .texto {
    font-size : 4em;
    line-height : 1.2em;
    color : #FFFFFF;
    margin-bottom: 1em;
}

#proyectos .columna.izq .cliente {
    font-size : 6em;
    line-height : 1.2em;
    color : #FFFFFF;
    margin: 0 0 0.5em;
}
#proyectos .columna.izq .proyecto {
    font-size : 2.8em;
    line-height : 1em;
    color : #3080E3;
    margin: 0 0 1.4em;
}
#proyectos .columna.izq .descripcion {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size : 1.7em;
    line-height : 1.8em;
    color : #FFFFFF;
}
#proyectos .columna.izq .descripcion p {
    font-weight: 300;
}

#proyectos .columna.izq .botonGeneral {
    color: #3088f4;
}
#proyectos .columna.izq .botonGeneral .st0 {
    stroke: #3088f4;
}
#proyectos .columna.izq .botonGeneral:hover {
    color: #ffffff;
}
#proyectos .columna.izq .botonGeneral:hover svg .st0{
    stroke: #ffffff;
}

#proyectos .columna.izq .botonVolver {
    position: absolute;
    top: 0; right: 0;
    display: none;
}
#proyectos .columna.izq .botonVolver .txt {
    text-align: center;
    font-weight : bold;
    font-size : 1.5em;
    line-height : 1em;
    color : #3080E3;
    padding: 0.7em 1.2em;
    background: #03326b;
    width: 9em;
    height: 4.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
#proyectos .columna.izq .botonVolver .icono {
    position: absolute;
    top: 0;
    left: -6.75em;
    width: 6.75em;
    height: 6.75em;
    background: #3080e3;
    transition: all 0.3s;
}
#proyectos .columna.izq .botonVolver .icono svg {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 3em; height: 3em;
}
#proyectos .columna.izq .botonVolver .icono svg .st0{
    fill:none;stroke:#FFFFFF;stroke-width:1.2208;stroke-miterlimit:10;
    transition: all 0.3s;
}

#proyectos .columna.izq .botonVolver:hover .txt {
    background: #3080e3;
    color: #ffffff;
    width: 10em;
}
#proyectos .columna.izq .botonVolver:hover .icono {
    background: #ffffff;
}
#proyectos .columna.izq .botonVolver:hover .icono svg .st0{
    stroke:#3080e3;
}


#proyectos .columna.der {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 70%;
    background: #092c73;
    /*overflow: hidden;*/
}

#proyectos .columna.der .loading {
    background: rgba(37,46,48,1);
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    transition: all 0.3s;
    z-index: 10000;
}
#proyectos .columna.der .loading svg {
	position: absolute;
	width: 11em; height: 11em;
	left: 50%; top: 50%;
    margin-left: -5.5em; margin-top: -5.5em;
	transform-origin: center;
	-webkit-animation-name: loadinganim;
    -webkit-animation-duration: 1s;
    animation-name: loadinganim;
    animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
#proyectos .columna.der .loading svg .st0{opacity:0.2;fill:none;stroke:#FFFFFF;stroke-width:3;stroke-miterlimit:10;}
#proyectos .columna.der .loading svg .st1{fill:none;stroke:#FFFFFF;stroke-width:3;stroke-miterlimit:10;}

#proyectos .columna.der .detalle {
    background: #092c73;
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000;
}


#proyectos .columna.der .slider,
#proyectos .columna.der .mask {
    height: 100%;
}
#proyectos .columna.der .mask {
    overflow: hidden;
    position: relative;
}
#proyectos .columna.der .scroll {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
}

#sliderProyectos .item {
    /*display: inline-block; vertical-align: top;*/
    /*width: 300px;*/
    /*height: 50%;*/
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
#sliderProyectos .item .thumb {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background: url(images/work_base.jpg) center no-repeat;
    background-size: cover;
    transition: all 0.3s;
}
#sliderProyectos .item .thumb::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: #002866;
    opacity: 0.5;
    transition: all 0.3s;
}
#sliderProyectos .item:hover .thumb::before {
    opacity: 0;
}
#sliderProyectos .item .info {
    position: absolute;
    background: #ffffff;
    left: 0; bottom: 0;
    width: 100%;
    padding: 4em 5em 4em 4em;
    transform: translateY(100%);
    transition: all 0.3s;
    opacity: 0;
}
#sliderProyectos .item .info .col {
    display: inline-block; vertical-align: middle;
}
#sliderProyectos .item .info .col.izq {
    width: 60%;
}
#sliderProyectos .item .info .col.der {
    width: 40%;
    text-align: right;
    transition: all 0.3s;
    transform: translateY(30em);
}
#sliderProyectos .item .info .col.izq h4 {
    font-size : 2.8em;
    line-height : 1em;
    color : #3088F4;
    font-weight: 300;
    margin-bottom: 0.1em;
    transition: all 0.3s;
    transform: translateY(11em);
}
#sliderProyectos .item .info .col.izq p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size : 1.5em;
    line-height : 1emx;
    letter-spacing : 0.04em;
    color : #7C7C7C;
    font-weight: 300;
    transition: all 0.3s;
    transform: translateY(10em);
    text-align: left;
}

#sliderProyectos .item:hover .info {
    opacity: 1;
}
#sliderProyectos .item:hover .info,
#sliderProyectos .item:hover .info .col.izq h4,
#sliderProyectos .item:hover .info .col.izq p,
#sliderProyectos .item:hover .info .col.der {
    transform: translate(0,0);
}
#sliderProyectos .item:hover .thumb {
    transform: scale(1.1);
}

#sliderProyectos .item .info .texto {
    display: none;
}

#sliderProyectos .item .imagenes {
    display: none;
}
#sliderProyectos .item .imagenes .item {
    height: 0;
    width: 0;
    display: none;
    flex: 0 0 auto !important;
    max-width: none !important;
}

#proyectos .paginacion {
    /*position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;*/
    margin-top: 0;
}
#proyectos .flechas {
    position: absolute;
    right: 100%;
    bottom: 0;
    z-index: 10000;
    width: 13.2em;
}
#proyectos .flechas .flecha {
    display: inline-block; vertical-align: bottom;
    background: #03326b;
    width: 6.6em; height: 6.6em;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}
#proyectos .flechas .flecha.izq {
    background: #3088f4;
}
#proyectos .flechas .flecha svg {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 4em; height: 4em;
}

#proyectos .flechas .flecha svg .st0{
    fill:none;stroke:#FFFFFF;stroke-miterlimit:10;
    transition: all 0.3s;
}
#proyectos .flechas .flecha:hover {
    background: #ffffff;
}
#proyectos .flechas .flecha:hover svg .st0{
    stroke: #3088f4;
}

#proyectos .columna.der .detalle .slider .item {
    padding: 0;
    height: 100%;
}
#proyectos .columna.der .detalle .slider .item img {
    height: 100%;
}


#clientes .columna.izq {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0; top: 0;
    width: 50%;
    height: 100%;
    padding: 6em 6em;
}
#clientes .columna.izq .content {
    width: 100%;
    max-width: 54em;
    transform: translateX(4em);
}
#clientes .columna.der {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0; top: 0;
    width: 50%;
    height: 100%;
    background: #f0f0f0;
    padding: 6em 0;
    font-size: 0.85em;
}
#clientes .columna.der .content {
    width: 100%;
}
#clientes .columna.der .slider .mask {
    overflow: hidden;
}

#clientes .columna.der .slider .item {
    display: flex;
    align-items: center;
}

#clientes .columna.der .logos {
    /*display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;*/
    text-align: center;
    padding: 0 4em;
}
#clientes .columna.der .logos img {
    margin: 3.5em;
    display: inline-block; vertical-align: middle;
}

#clientes .columna.izq .titulo {
    text-align: left;
}
#clientes .columna.izq p {
    font-size : 4.5em;
    line-height : 1.2em;
    color : #323D43;
    max-width: 10.5em;
}

.slider .paginacion .pags div {
    background: transparent;
    border: 1px solid #f0f0f0;
    border-radius: 1000px;
    width: 1.8em !important;
    height: 1.8em !important;
}
.slider .paginacion .pags div.activo {
    border-color: #3088f4;
}
.slider .paginacion .pags div::before {
    background: #3088f4;
    border: 0 !important;
    left: 0.3em !important;
    top: 0.3em !important;
    right: 0.3em !important;
    bottom: 0.3em !important;
}
.slider .paginacion .pags div.activo::before {
    background: #3a464c;    
}

#contacto .columna .cell {
    vertical-align: middle;
    position: relative;
}

#contacto .columna.izq {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0; top: 0;
    width: 50%;
    height: 100%;
    padding: 6em 6em;
    background: #3088f4;
}
#contacto .columna.izq .content {
    max-width: 54em;
    transform: translateX(4em);
}
#contacto .columna.der {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0; top: 0;
    width: 50%;
    height: 100%;
    background: #f5f5f5;
}
#contacto .columna.izq .titulo {
    font-size : 4.5em;
    line-height : 1em;
    color : #032E6B;
    text-align: left;
    margin-bottom: 0.6em;
}
#contacto .columna.izq h4 {
    font-size : 2.5em;
    line-height : 1em;
    color : #FFFFFF;
    margin-bottom: 1em;
}
#contacto .columna.izq p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size : 15px;
    line-height : 1.5em;
    letter-spacing : 0.01em;
    color : #FFFFFF;
    font-weight: 300;
    max-width: 25em;
    margin-bottom: 1.8em;
}

#contacto .columna.izq form {
    margin: 0 -1.2em;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
#contacto .columna.izq .col {
    padding: 1.2em;
    display: inline-block; vertical-align: middle;
    flex: 0 0 100%;
    max-width: 100%;
}
#contacto .columna.izq .c50 {
    flex: 0 0 50%;
    max-width: 50%;
}
#contacto .columna.izq .campo {
    display: block;
    width: 100%;
    font-family: 'IBM Plex Sans', sans-serif;
    border: 1px solid #ffffff;
    border-radius: 2.1em;
    padding: 1.25em 1.8em;
    font-weight : normal;
    font-size : 15px;
    line-height : 1em;
    letter-spacing : 0.01em;
    color : #FFFFFF;
    background: none;
    transition: all 0.3s;
}


#contacto .columna.izq .campo::placeholder {
    color: #ffffff;
    opacity: 0.5;
    transition: all 0.3s;
}


#contacto .columna.izq .campo:focus {
    background: #ffffff;
    color: #032e6b;
}

#contacto .columna.izq .campo:focus::placeholder {
    color: #032e6b;
}


#contacto .columna.izq .boton {
    font-family: 'Montserrat', sans-serif;
    background: #032e6b;
    border: none;
    padding: 1.25em 1.8em;
    padding-right: 4em;
    border-radius: 2.1em;
    font-weight : bold;
    font-size : 15px;
    line-height : 1em;
    letter-spacing : 0.01em;
    text-transform : uppercase;
    color : #FFFFFF;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
#contacto .columna.izq .boton svg {
    position: absolute;
    right: 1.5em; top: 50%;
    transform: translateY(-50%);
    width: 1.6em; height: 1.6em;
}

#contacto .columna.izq .boton svg .st0 {
    fill:none;stroke:#FFFFFF;stroke-miterlimit:10;
    transition: all 0.3s;
}
#contacto .columna.izq .boton:hover {
    background: #ffffff;
    color: #3088f4;
    padding-right: 4.5em;
}
#contacto .columna.izq .boton:hover svg .st0{
    stroke: #3088f4;
}

form .mensaje {
    background: #ffffff;
    padding: 8px 20px;
    font-size : 10px;
    line-height : 10px;
    letter-spacing : 0.12px;
    text-transform : uppercase;
    color : #032E6B;
    margin-top: 12px;
    border-radius: 8px;
    position: relative;
    display: none;
}
form .mensaje::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 10px 8px;
    border-color: transparent transparent #ffffff transparent;
    left: 25px;
    bottom: 100%;
}

#contacto .columna.der .info {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 2.5em 4.7em 1em;
    border-radius: 0 1.5em 1.5em 0;
    box-shadow: 0 0 1.6em 0 rgba(20,96,173,0.12);
    z-index: 10;
    max-width: 42em;
}
#contacto .columna.der .info .linea {
    margin: 3em 0;
    display: table;
    width: 100%;
}
#contacto .columna.der .info .linea .icono {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 8.6em;    
}
#contacto .columna.der .info .linea .icono div {
    background: #3088f4;
    border-radius: 1000px;
    width: 8.6em; height: 8.6em;
    position: relative;
}

#contacto .columna.der .info .linea .icono div img {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
}

#contacto .columna.der .info .linea .cell {
    padding: 0 2.5em;    
}
#contacto .columna.der .info .linea .cell p,
#contacto .columna.der .info .linea .cell a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size : 13px;
    line-height : 1.3em;
    letter-spacing : 0.01em;
    color : #7C7C7C;
    margin: 0.8em 0;
}
#contacto .columna.der .info .linea .cell p a {
    font-size: 1em;
}
#contacto .columna.der .info .linea h5 {
    font-weight : 600;
    font-size : 1.4em;
    line-height : 1.5em;
    letter-spacing : 0.01em;
    color : #3088F4;
    
}

#contacto .columna.der .info .redes {
    text-align: center;
    padding-top: 0.5em;
}

#contacto .columna.der .info .redes a {
    display: inline-block; vertical-align: middle;
    background: #3088f4;
    width: 5em; height: 5em;
    border-radius: 10000px;
    margin: 1.3em;
    position: relative;
    transition: all 0.3s;
}
#contacto .columna.der .info .redes a svg {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 2.4em; height: 2.4em;
}

#contacto .columna.der .info .redes a svg .st0{
    fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;
    transition: all 0.3s;
}
#contacto .columna.der .info .redes a:hover {
    background: #032e6b;
}

#contacto .columna.der .info .redes a:hover svg .st0 {
    fill: #3088f4;
}
#contacto .columna.der .info .redes h5 {
    margin-bottom: 1em;
}

#contacto .columna.der .mapa {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
}


footer {
    background: #323d43;
}
footer .container {
    height: auto;
}
footer .f1 {
    padding: 3.5em 12.5em;
}

footer .columnas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0 -2em;
}

footer .columna {
    padding: 2em;
}
footer .f1 .columna.c1 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 1em 0;
    padding-right: 3em;
}
.middle {
    display: flex;
    align-items: center;
    height: 100%;
}
footer .f1 .columna.c1 img {
    /*width: 14.2em;*/
}
footer .f1 .columna.c2 {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 30em;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    
    align-items: flex-start;
    font-size: 10px;
}
footer .f1 .columna.c2 .middle {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    height: 19.1em;
}

footer .f1 .columna.c2 .idiomas {
    display: none;
}



footer .f1 .columna.c3 {
    flex: 0 0 14%;
    max-width: 14%;
    display: flex;
    align-items: center;
    font-size: 10px;
}

footer .f1 .columna.c3 .middle {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 17em;
    border-left: 1px solid #7c7c7c;
    padding-left: 2.5em;
}

footer .f1 .columna.c2 .boton {
    font-weight : normal;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size : 1.4em;
    line-height : 1em;
    color : #7C7C7C;
    letter-spacing : 0.01em;
    padding: 1.2em 1.9em 1.2em 0;
    margin-right: 2em;
    cursor: pointer;
    transition: all 0.3s;
}
footer .f1 .columna.c2 .boton:hover {
    color: #3088f4;
}

footer .f1 .columna.c3 a {
    padding: 1.5em;
    position: relative;
    display: block;
    padding-left: 4em;
}
footer .f1 .columna.c3 a svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4em; height: 2.4em;
}

footer .f1 .columna.c3 a svg .st0 {
    fill:#3088f4;
    transition: all 0.3s;
}
footer .f1 .columna.c3 a span {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size : 1.4em;
    line-height : 1em;
    letter-spacing : 0.01em;
    color : #7C7C7C;
    transition: all 0.3s;
}
footer .f1 .columna.c3 a:hover span {
    color: #ffffff;    
}
footer .f1 .columna.c3 a:hover svg .st0 {
    fill: #ffffff;
}

footer .f1 .columna.c4 {
    flex: 0 0 16%;
    max-width: 16%;
    text-align: right;
}
footer .f1 .columna.c5 {
    flex: 0 0 25%;
    max-width: 25%;
    text-align: right;
}


footer .f1 .columna.c5 .middle {
    text-align: right;
    justify-content: flex-end;
}

footer .f1 .columna.c5 a {
    display: inline-block;
    position: relative;
    padding-right: 7em;
}
footer .f1 .columna.c5 a img {
    width: 24.3em;
}
footer .f1 .columna.c5 a div {
    position: absolute;
    right: 0;
    top: 50%; transform: translateY(-50%);
    width: 5em; height: 5em;
    background: #3088f4;
    border-radius: 1000px;
    transition: all 0.3s;
}
footer .f1 .columna.c5 a div svg {
    width: 2.2em; height: 2.2em;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
}

footer .f1 .columna.c5 a div svg .st0 {
    fill:none;stroke:#ffffff;stroke-miterlimit:10;
    transition: all 0.3s;
}

footer .f1 .columna.c5 a:hover div {
    background: #ffffff
}
footer .f1 .columna.c5 a:hover div svg .st0 {
    stroke: #3088f4;
}


footer .f2 {
    padding: 1.8em 12.5em;
    background: #222b2d;
}
footer .f2 .columna.c1 {
    width: 35%;
    
}
footer .f2 .columna.c2 {
    font-family: 'IBM Plex Sans', sans-serif;
    width: 100%;
    text-align: right;
    font-size : 1.3em;
    line-height : 1.5em;
    letter-spacing : 0.01em;
    color : #4F5F66;;
}
footer .f2 .columna.c2 a {
    color : #FFFFFF;
}


footer .f2 .columna.c1 span {
    display: inline-block; vertical-align: middle;
    margin-right: 1em;
    font-weight : 600;
    font-size : 1.5em;
    line-height : 1em;
    letter-spacing : 0.01em;
    color : #FFFFFF;
}
footer .f2 .columna.c1 a {
    display: inline-block; vertical-align: middle;
    padding: 1em;
}
footer .f2 .columna.c1 a svg {
    width: 2.4em; height: 2.4em;
}
footer .f2 .columna.c1 a svg .st0{
    fill-rule:evenodd;clip-rule:evenodd;fill:#3088f4;
    transition: all 0.3s;
}
footer .f2 .columna.c1 a:hover svg .st0{
    fill: #ffffff;
}


.navegacionIzq {
    position: fixed;
    top: 50%;
    left: 4.4em;
    transform: translateY(-50%);
    z-index: 100;
    transition: all 0.3s;
}
.navegacionIzq .boton {
    display: block;
    padding: 1.2em;
    position: relative;
    cursor: pointer;
}
.navegacionIzq .boton .circulo {
    width: 1em; height: 1em;
    background: #3088f4;
    border-radius: 10000px;
    position: relative;
    transition: all 0.3s;
}
.navegacionIzq .boton .circulo::before {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 1em; height: 1em;
    border: 1px solid #3088f4;
    border-radius: 1000px;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s;
}
.navegacionIzq .num {
    font-size : 1.7em;
    line-height : 1.2em;
    color : #323D43;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 0.5em;
    left: 0.5em;
    opacity: 0;
    transition: all 0.3s;
    z-index: -1;
}
.navegacionIzq .num::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #3a464c;
    transition: all 0.3s;
}

.navegacionIzq .boton.activo .circulo {
    background: #3a464c;
}

.navegacionIzq .boton.activo .num {
    left: 2.5em;
    opacity: 1;
}
.navegacionIzq .boton.activo .num::before {
    width: 1.5em;
}
.navegacionIzq .boton.activo .circulo::before {
    width: 1.6em; height: 1.6em;
    opacity: 1;   
}



.navegacionIzq.esquema2 .boton .circulo {
    background: #ffffff;
}
.navegacionIzq.esquema2 .boton .circulo::before {
    border-color: #ffffff;
}
.navegacionIzq.esquema2 .boton.activo .circulo {
    background: #3a464c;
}

.navegacionIzq.esquema3 .boton .circulo {
    background: #ffffff;
}
.navegacionIzq.esquema3 .boton .circulo::before {
    border-color: #ffffff;
}
.navegacionIzq.esquema3 .boton.activo .circulo {
    background: #3088f4;
}
.navegacionIzq.esquema3 .boton.activo .num {
    color : #3088f4;
}
.navegacionIzq.esquema3 .boton.activo .num::before {
    background: #3088f4;
}

.navegacionIzq.disable {
    opacity: 0;
}


.grecaptcha-badge {
    opacity: 0;
    z-index: -1;
}


@media (max-width: 1850px) {
    body {
        font-size: 9.5px;
    }
}
@media (max-width: 1800px) {
    body {
        font-size: 9px;
    }
}

@media (max-width: 1700px) {
    body {
        font-size: 8.5px;
    }
    .menu {
        font-size: 9px;
    }
    
    footer .f1 .columna.c3 {
        flex: 0 0 15%;
        max-width: 15%;
    }
    footer .f1 .columna.c4 {
        flex: 0 0 15%;
        max-width: 15%;
    }
    
}

@media (max-width: 1650px) {
    
}


@media (max-width: 1600px) {
    body {
        font-size: 8px;
    }
}


@media (max-width: 1500px) , (max-height: 800px) {
    .seccion, .container, .contenido, .columna {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        height: auto !important;
    }
    .seccion {
        min-height: 100vh;
    }
    
    #header {
        min-height: 100vh;
    }
    #header {
        background: #f0f0f0;
    }
    /*#header .videoContainer {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
    }
    #header .videoContainer .fondo {
        width: 100%;
        height: auto;
    }*/
    #servicios {
        min-height: 0 !important;
    }
    .container .content {
        padding: 10em 10em;
    }
    .navegacionIzq {
        display: none;
    }
    
    #header .contenido {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
    }
    
    #about,
    #proyectos,
    #clientes,
    #contacto {
        display: flex !important;
        flex-wrap: wrap;
        align-items: stretch;
    }
    #about .foto,
    #about .contenido {
        width: auto;
        position: relative;
        height: auto;
    }
    #about .contenido {
        flex: 0 0 40%;
        max-width: 40%;
    }
    #about .fotos {
        flex: 0 0 60%;
        max-width: 60%;
    }
    #about .contenido .content {
        padding: 10em 4em 5em 8em;
    }
    
    #proyectos .columna.izq {
        width: auto;
        flex: 0 0 30%;
        max-width: 30%;
    }
    #proyectos .columna.izq .content {
        padding: 10em 10em;
    }
    #proyectos .columna.der {
        width: auto;
        flex: 0 0 70%;
        max-width: 70%;
        height: 100vh !important;
    }
    #clientes .columna.izq {
        width: auto;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10em;
    }
    #clientes .columna.der {
        width: auto;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    #header .logo {
        left: 10em;
    }
    
}

@media (max-width: 1500px) {
    footer {
        z-index: 99;
    }
    footer .col {
        display: block;
        width: 100%;
    }
    body {
        font-size: 7.5px;
    }
    #contacto .columna.izq .content,
    #clientes .columna.izq .content {
        transform: none;
    }
}

@media (max-width: 1400px) {
    body {
        font-size: 7px;
    }
    footer .f1 .columna.c1,
    footer .f1 .columna.c3,
    footer .f1 .columna.c4 {
        flex: 0 0 auto;
        max-width: none;
    }
    footer .columnas {
        justify-content: space-between;
    }
}

@media (max-width: 1300px) {
    footer .f1 .columna.c1 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    footer .f1 .columna.c2,
    footer .f1 .columna.c3,
    footer .f1 .columna.c4,
    footer .f1 .columna.c5 {
        flex: 0 0 auto;
        max-width: none;
    }
    
    footer .f1 .columna.c5 {
        justify-content: flex-start;
    }
    footer .f1 .columna.c5 .middle {
        justify-content: flex-start;
        text-align: left;
    }
    footer .middle,
    footer .f1 .columna.c3 {
        align-items: flex-start !important;
    }
    
}

@media (max-width: 1200px) {
    footer .f1 {
        padding: 3.5em 8em;
    }
    footer .f2 {
        padding: 4em 8em;
    }
    
    #proyectos .columna.izq {
        flex: 0 0 40%;
        max-width: 40%;
    }
    #proyectos .columna.der {
        flex: 0 0 60%;
        max-width: 60%;
    }
    
    .menu {
        padding-right: 4em;
    }
    
    
    
}

@media (max-width: 1150px) {
    
}

@media (max-width: 1100px) {
    #clientes .columna.izq {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10em 10em;
    }
    #clientes .columna.der {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #clientes .columna.izq p {
        max-width: none;
    }
    #clientes .columna.izq .content {
        max-width: none;
    }
    
    
}

@media (max-width: 1050px) {
    
}

@media (max-width: 1000px) {
    footer {
        padding-left: 0;
    }
    
    #about .contenido,
    #about .fotos {
        flex: 0 0 100%;
        max-width: 100%;        
    }
    #about .contenido .intro,
    #about .contenido .texto {
        max-width: none;
    }
    #about .fotos {
        position: relative;
        left: auto;
        top: auto;
        padding: 0 8em 6em;
    }
    
    #proyectos .columna.izq {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #proyectos .columna.der {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 80em;
    }
    #proyectos {
        min-height: 0 !important;
    }
    #proyectos .paginacion {
        position: absolute;
        left: 0; top: 0;
        width: 100%; height: 100%;
    }
    
    #proyectos .paginacion {
        pointer-events: none;
    }
    #proyectos .flechas {
        right: 0;
        bottom: 0;
        pointer-events: all;
    }
    #proyectos .columna.izq {
        z-index: 1;
    }
    #proyectos .columna.der {
        z-index: 0;
    }
    #proyectos .columna.izq .botonVolver {
        top: 100%;
        right: auto;
        left: 6.75em;
    }
    
    #proyectos .columna.der {
        height: auto !important;
    }
    
    
}

@media (max-width: 950px) {
    .container .content {
        padding: 10em 6em;
    }
    .menu {
        display: none;
    }
    #header .logo {
        left: 6em;
    }
    #header .contenido {
        width: 100%;
        padding: 0;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        padding-top: 14em;
        transform: none !important;
    }
    #header .txt {
        transform: translateY(8em);
    }
    #header .videoContainer {
        display: none;
    }
    #header {
        min-height: auto !important;
    }
    #header .mobile {
        display: block;
        
    }
    
    #about .foto, #about .contenido {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #about .contenido .content {
        width: 100%;
        max-width: none;
    }
    #about .contenido .intro,
    #about .contenido .texto {
        max-width: none;
    }
    #about {
        min-height: 0 !important;
    }
    #about .foto {
        height: 47em;
    }
    
    #about .contenido .content {
        padding: 10em 10em 5em;
    }
    #proyectos .columna.izq .content {
        padding: 10em 10em;
    }
}

@media (max-width: 900px) {
    #contacto .columna.izq {
        width: auto;
        flex: 0 0 100%;
        max-width: 100%;
    }
    #contacto .columna.der {
        width: auto;
        flex: 0 0 100%;
        max-width: 100%;
    }
    #contacto .columna.izq p,
    #contacto .columna.izq form {
        max-width: none;
    }
    #contacto .columna.der .content {
        width: 100%;
    }
    #contacto .columna.der .info {
        position: relative;
        left: auto; top: auto;
        transform: none;
    }
    #contacto .columna.der .info {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    #contacto .columna.der .info .linea {
        width: auto;
        flex: 0 0 auto;
        max-width: none;
        margin: 3em 2em;
    }
    #contacto .columna.der .info .linea:last-of-type {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    #contacto .columna.der .mapa {
        position: relative;
        left: auto; top: auto; right: auto;
        transform: none;
        width: 100%;
        height: 60em;
    }
    
    #proyectos .columna.der {
        min-height: 60em;
    }
    
    #contacto .columna.der .info {
        max-width: none;
    }
    
    #servicios .sliderServicios .item .bloque .hidden {
        display: block;
        opacity: 1;
    }
    #servicios .sliderServicios .item .bloque .txt {
        display: none;
    }
    #contacto .columna.izq .content {
        max-width: none;
    }
    
}

@media (max-width: 800px) {
    
}

@media (max-width: 750px) {
    .titulo {
        font-size: 4em;
    }
    #proyectos .columna.izq .texto,
    #clientes .columna.izq p {
        font-size: 3.2em;
    }
    footer .f1 .columna.c2 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-bottom: 3em;
    }
    footer .f1 .columna.c3 {
        flex: 0 0 40%;
        max-width: 40%;
    }
    footer .f1 .columna.c4 {
        flex: 0 0 60%;
        max-width: 60%;
    }
    footer .f1 .columna.c5 {
        padding-top: 6em;
    }
}

@media (max-width: 700px) {
    .seccion {
        min-height: 0 !important;
    }
    footer .f1 {
        padding: 5.5em 5em;
    }
    footer .f2 {
        padding: 4em 5em;
    }
    
    footer .f2 .columna.c1,
    footer .f2 .columna.c2 {
        width: 100%;
        text-align: left;
    }
    footer .f2 .columna.c1 {
        padding-bottom: 2em;
    }
    
    #header .txt {
        transform: translateY(3em);
    }
    #header .contenido {
        padding-top: 20em;
    }
    
}

@media (max-width: 650px) {
    #header .mobile {
        margin-top: 2em;
    }
    #about .fotos .item {
        height: 40em;
    }
}


@media (max-width: 600px) {
    #contacto .columna.izq .c50 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


@media (max-width: 550px) {
    #proyectos .columna.der {
        min-height: 60em;
    }
    #sliderProyectos .item .info .col.izq,
    #sliderProyectos .item .info .col.der {
        width: 100%;
        text-align: left;
    }
    
    #about .contenido .content,
    #proyectos .columna.izq .content,
    #clientes .columna.izq {
        padding: 10em 6em 10em;
    }
    
    #about .fotos {
        padding: 0 5em 6em;
    }
    #about .fotos .item {
        height: 32em;
    }
    
    #proyectos .columna.der {
        min-height: 50em;
    }
    
}

@media (max-width: 500px) {
    .container .content {
        padding: 10em 4em;
    }
    #header h1 {
        font-size: 5em;
    }
    #about .foto {
        height: 35em;
    }
    #header .mobile {
        margin-top: 9em;
    }
    
    footer .f1 .columna.c1,
    footer .f1 .columna.c2,
    footer .f1 .columna.c3 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
    }
    footer .f1 .columna.c2 .middle,
    footer .f1 .columna.c3 .middle {
        flex-direction: row;
        height: auto;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    footer .f1 .columna.c3 .middle {
        padding-left: 0;
        border-left: 0;
    }
    footer .f1 .columna.c2 .boton {
        margin-right: 0;
    }
}

@media (max-width: 450px) {
    #about .fotos .item {
        height: 27em;
    }
    
    #proyectos .columna.der {
        min-height: 50em;
    }
    
}


@media (max-height: 800px) {
    
}

@media (max-height: 600px) {
    
}





