

/* CSS RESET. standardizes cross-browser rendering on common elements, neutralizing browsers' built-in stylesheets. */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, iframe {
  margin: 0;
  padding: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset, img {
  border: 0; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before, q:after {
  content: ''; }

abbr, acronym {
  border: 0; }

a, img a {
  border: 0 none;
  margin: 0;
  padding: 0; }

/* End RESET. */


/*---------------- BOTON DE HAMBURGUESA -----------------*/

/* Este código CSS está creando un botón de menú "hamburguesa" con 3 líneas que se transforma en
  una X al cerrarse*/

/*Remueve estilos por defecto del botón, lo vuelve transparente sin bordes ni outline*/
button.lines-button {
  -webkit-appearance: none;
  background: transparent;
  border: 0 none;
  outline: 0 none; }

/*Define el fondo de color azul para las líneas.*/
button .lines {
  background: #234369; }
  button .lines:before, button .lines:after {
    background: #234369; }

/*Estilos base para las 3 líneas: color, borde redondeado, alto, ancho, transiciones, etc.*/
.lines {
  vertical-align: middle;
  background: #234369;
  border-radius: 0.08333rem;
  display: inline-block;
  height: 0.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 1.25rem;
  position: relative;
  /*crear las líneas superior e inferior como pseudoelementos de la línea media*/ }
  .lines:before, .lines:after {
    background: #234369;
    border-radius: 0.08333rem;
    display: inline-block;
    height: 0.125rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 1.25rem;
    position: absolute;
    left: 0;
    content: '';
    transform-origin: 0.08929rem center;
    -webkit-transform-origin: 0.08929rem center; }
  .lines:before {
    top: 0.3125rem; }
  .lines:after {
    top: -0.3125rem; }


/*Estilos para el botón contenedor: redondear esquinas, cursor para indicar que es clickeable, transiciones.*/
.lines-button {
  border-radius: 0.17857rem;
  cursor: pointer;
  display: inline-block;
  padding: 0.4386rem;
  padding-bottom: 0.625rem;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

  .lines-button:hover {
    opacity: 1; }

  .lines-button:active {
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: 0;
    transition: 0; }

  /*Estilos para cuando está en estado "cerrado"*/
  .lines-button.x.close .lines {
    /*ocultar la línea media */
    background: transparent;
    
    /*superponga las líneas estableciendo ambos valores superiores en 0 */ }
    .lines-button.x.close .lines:before, .lines-button.x.close .lines:after {
      transform-origin: 50% 50%;
      -webkit-transform-origin: 50% 50%;
      top: 0;
      width: 1.25rem; }

    .lines-button.x.close .lines:before {
      -webkit-transform: rotate3d(0, 0, 1, 45deg);
      transform: rotate3d(0, 0, 1, 45deg); }

    .lines-button.x.close .lines:after {
      -webkit-transform: rotate3d(0, 0, 1, -45deg);
      transform: rotate3d(0, 0, 1, -45deg); }


/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=aab46673704e7643d5fdec2d2e9cbeca)
 * Config saved to config.json and https://gist.github.com/aab46673704e7643d5fdec2d2e9cbeca
 */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

.container, .row, *[class^="col-"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

.row {
  margin-left: -15px;
  margin-right: -15px; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0%; } }

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table; }

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

ul.slick-dots li {
  margin: 0 6px;
  display: inline-block;
  vertical-align: top; }
  ul.slick-dots li button {
    transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -webkit-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: white;
    border-radius: 50%;
    border: 3px solid white;
    cursor: pointer;
    display: block;
    height: 11px;
    padding: 0;
    text-indent: -30000px;
    width: 11px; }
    ul.slick-dots li button:focus {
      outline: 0 none;
      background: white; }
  ul.slick-dots li:not(.slick-active) button:hover {
    background: #85efd1; }
  ul.slick-dots li.slick-active button {
    background: #10273a; }
  @media (max-width: 1000px) {
    ul.slick-dots li button {
      background: #85efd1;
      border: 2px solid #234369; }
      ul.slick-dots li button:focus {
        background: #234369; }
    ul.slick-dots li.slick-active button {
      background: #234369; } }

.btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  background: #10273a;
  border-radius: 3px;
  border: 0 none;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  padding: 11px 24px;
  text-align: center; }
  .btn.teal {
    background: #85efd1; }
    .btn.teal:hover {
      background: #a0f3db; }
    .btn.teal.blue-letters {
      color: #10273a; }
  .btn:hover {
    background: #234369; }
  .btn.wide {
    padding: 12px 50px; }
  @media (max-width: 600px) {
    .btn {
      display: block;
      width: 100%;
      padding: 16px 5px;
      font-size: 14px;
      font-weight: 600; }
      .btn.wide {
        padding: 12px; } }

ul.checkmark-cards li {
  background: #f0f0f1 url("/images/checkmark-col.svg") no-repeat left top;
  border-radius: 0 10px 10px;
  -webkit-box-shadow: 2px 2px 0 #234369;
          box-shadow: 2px 2px 0 #234369;
  color: #234369;
  font-size: 16px;
  padding: 15px 15px 20px 45px;
  margin: 0 0 15px 0; }
  ul.checkmark-cards li.top {
    -webkit-box-shadow: 0 0 0 transparent;
            box-shadow: 0 0 0 transparent;
    background: transparent;
    text-align: center;
    vertical-align: bottom;
    padding: 0; }
    ul.checkmark-cards li.top a {
      color: #85efd1;
      font-size: 11px;
      display: inline-block;
      margin-top: 20px; }
      ul.checkmark-cards li.top a:hover {
        color: white; }
        ul.checkmark-cards li.top a:hover i {
          border-color: white; }
      ul.checkmark-cards li.top a i {
        border-radius: 50%;
        border: 3px solid #85efd1;
        font-size: 30px;
        height: 24px;
        line-height: 19px;
        margin-bottom: 10px;
        width: 24px; }
  @media (min-width: 600px) {
    ul.checkmark-cards li {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -moz-box-sizing: border-box;
      display: inline-block;
      vertical-align: top; } }
  @media (min-width: 600px) and (max-width: 850px) {
    ul.checkmark-cards li {
      width: 48%;
      margin-right: 4%; }
      ul.checkmark-cards li:nth-child(even) {
        margin-right: 0; } }
  @media (min-width: 851px) and (max-width: 999px) {
    ul.checkmark-cards li {
      width: 32%;
      margin-right: 2%; }
      ul.checkmark-cards li:nth-child(3n+3) {
        margin-right: 0; } }
  @media (min-width: 1000px) {
    ul.checkmark-cards li {
      width: 24%;
      margin-right: 1.33%; }
      ul.checkmark-cards li:nth-child(4n+4) {
        margin-right: 0; } }

ul.checkmarks li {
  padding-left: 24px;
  position: relative;
  color: #10273a;
  font-size: 16px;
  margin-bottom: 10px; }
  ul.checkmarks li:before {
    font-family: 'fontAwesome';
    content: "\f00c";
    color: #85efd1;
    position: absolute;
    left: 0;
    font-size: 15px; }

ul.checkmarks-big li {
  margin-bottom: 100px; }
  @media (max-width: 767px) {
    ul.checkmarks-big li {
      margin-bottom: 50px; } }

ul.checkmarks-big .item {
  padding-left: 50px;
  background: url("/images/checkmark.svg") no-repeat left top;
  font-size: 16px; }
  ul.checkmarks-big .item h4 {
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    margin-bottom: 10px; }
  ul.checkmarks-big .item p {
    font-size: 14px; }

ul.checkmarks-big .row {
  clear: both; }

/*---------------- HEADER -----------------*/

/*Este código CSS está definiendo los estilos para el encabezado del sitio web*/
header#header {
  /*Establece la transición suave en las propiedades*/
  transition: all 0.2s; 
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-backdrop-filter: blur(5px); /*Fondo semi-transparente*/
  background-color: rgba(255, 255, 255, 0.94);
  left: 0;
  padding: 10px 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10 !important; } /*alto para que quede sobre otros elementos*/
  
  /*Permite scroll vertical cuando el menu tiene mucho contenido.*/
  header#header.scroll {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll; }
  
  /*Estilos para el botón de menú hamburguesa*/
  header#header button.lines-button {
    position: absolute;
    right: 10px;
    top: 15px; }
  
  /*Estilos para el logo*/
  header#header a.logo {
    display: inline-block;
    margin-bottom: -3px; }

    header#header a.logo img {
      display: block; }

  header#header nav li {
    margin: 10px 5px 0; }
  
  /*Estilos para los links de navegación*/
  header#header nav a {
    display: inline-block;
    font-weight: 500;
    padding-bottom: 10px;
    position: relative; }

    /*Efectos hover*/
    header#header nav a:hover {
      color: #3d74b6; }
    
    /*Indicador de link activo*/
    header#header nav a.active {
      border-bottom: 1px solid #10273a;
      pointer-events: none; }

      header#header nav a.active:before, header#header nav a.active:after {
        content: "";
        position: absolute;
        height: 8px;
        width: 32px;
        background: #85efd1;
        left: -20px;
        bottom: -2px; }

      header#header nav a.active:after {
        background: #10273a;
        left: -10px;
        bottom: -8px; }

    /* Media queries */

    /* Para pantallas entre 868px y 1220px, reducir tamaño de fuente del menú */
    @media (min-width: 868px) and (max-width: 1220px) {
      header#header nav a {
        font-size: 11px; } }

  /* Para pantallas mayores a 868px: 
  - Ocultar botón hamburguesa
  - Mostrar menú horizontal flex */ 
  @media (min-width: 868px) {
    header#header button.lines-button {
      display: none; }

    header#header .wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center; }

    header#header ul.social {
      align-self: flex-end;
      margin-bottom: -26px; }
      
    header#header nav {
      flex: 1;
      margin: 0 2% 0 4%; }

      header#header nav ul {
        align-items: center;
        display: flex;
        justify-content: space-between; }
        header#header nav ul li {
          display: inline-block;
          vertical-align: middle;
          font-size: 13px; } }

  /*Ocultar nav y social links.*/
  @media (min-width: 868px) and (max-width: 1137px) {
    header#header ul.social {
      display: none; }
    header#header nav {
      margin-right: 0; } }

  /*Mostrar al abrir menu.*/
  @media (max-width: 867px) {
    header#header nav, header#header ul.social {
      display: none; }
    header#header ul.social {
      padding-top: 10px; }
    header#header nav li {
      margin: 10px 0; }
    header#header nav a {
      font-size: 17px;
      padding: 10px 0; }
    header#header.nav-is-open nav, header#header.nav-is-open ul.social {
      display: block; } }

/* Bentley Logo */
.logo-bentley {
  display: block;
  text-align: center;
  margin-top: 10px;
}
.logo-bentley img {
  max-width: 100%;
  height: auto;
}

  
footer#footer {
  background: rgba(35, 67, 105, 0.7);
  color: white;
  font-weight: 300;
  font-size: 12px;
  padding: 30px 0; }
  footer#footer h6 {
    font-size: 10px;
    margin-bottom: 15px; }
  footer#footer .contact-info {
    background: url(../images/icon-location.svg) no-repeat left top;
    font-family: 'Roboto';
    line-height: 1.75;
    padding: 5px 0 0 40px; }
    footer#footer .contact-info.phone {
      background-image: url(../images/icon-phone.svg); }
    footer#footer .contact-info a {
      color: white; }
      footer#footer .contact-info a:hover {
        color: #85efd1; }
  footer#footer ul.social li.gh {
    display: none; }
  @media (min-width: 830px) {
    footer#footer ul.social li {
      margin: 0 6px 12px; }
      footer#footer ul.social li:first-child {
        margin-left: 0; }
      footer#footer ul.social li:last-child {
        margin-right: 0; } }
  @media (min-width: 920px) {
    footer#footer ul.social li a {
      border-radius: 5px;
      font-size: 22px;
      height: 36px;
      line-height: 38px;
      width: 36px; } }
  @media (min-width: 768px) and (max-width: 810px) {
    footer#footer .row > div:first-child {
      width: 20%; }
    footer#footer .row > div:nth-child(2) {
      width: 30%; }
    footer#footer ul.social li {
      white-space: nowrap;
      margin: 0 2px 12px; } }
  @media (max-width: 767px) {
    footer#footer {
      text-align: center; }
      footer#footer .contact-info {
        background-position: center top;
        padding: 40px 15px 0; }
        footer#footer .contact-info.phone {
          padding: 52px 15px 0; }
      footer#footer .row > div {
        margin-bottom: 30px; }
        footer#footer .row > div:last-child {
          margin-bottom: 0; } }

.separate {
  position: relative;
  z-index: 3; }
  .separate footer#footer {
    background: #234369; }

.home #hero {
  background-image: url(../images/hero-lg.jpg); }
  @media (max-width: 1400px) {
    .home #hero {
      background-image: url(../images/hero-md.jpg); } }
  @media (max-width: 800px) {
    .home #hero {
      background-image: url(../images/hero-sm.jpg); } }

.home #about {
  margin-top: -15%;
  background: url(../images/triang-lg.png) no-repeat center top;
  background-size: 100% auto;
  padding: 22% 0 60px;
  position: relative;
  z-index: 2;
  padding-bottom: 72%; }
  @media (max-device-width: 320px) {
    .home #about {
      background-size: 130% auto; } }
  @media (max-width: 2200px) {
    .home #about {
      padding-bottom: 66%; } }
  @media (max-width: 2100px) {
    .home #about {
      padding-bottom: 64%; } }
  @media (max-width: 2000px) {
    .home #about {
      padding-bottom: 62%; } }
  @media (max-width: 1900px) {
    .home #about {
      padding-bottom: 59%; } }
  @media (max-width: 1800px) {
    .home #about {
      padding-bottom: 56%; } }
  @media (max-width: 1700px) {
    .home #about {
      padding-bottom: 52.5%; } }
  @media (max-width: 1600px) {
    .home #about {
      padding-bottom: 69%; } }
  @media (max-width: 1500px) {
    .home #about {
      padding-bottom: 65%; } }
  @media (max-width: 1400px) {
    .home #about {
      padding-bottom: 50%; } }
  @media (max-width: 1300px) {
    .home #about {
      padding-bottom: 35%; } }
  @media (max-width: 1200px) {
    .home #about {
      padding-bottom: 26.5%; } }
  @media (max-width: 1100px) {
    .home #about {
      padding-bottom: 19%; } }
  @media (max-width: 1001px) {
    .home #about {
      padding-bottom: 10%; } }
  @media (max-width: 600px) {
    .home #about {
      margin-top: -8%;
      padding-top: 15%; } }
  @media (max-width: 1400px) {
    .home #about {
      background-image: url(../images/triang-md.png); } }
  @media (max-width: 1000px) {
    .home #about {
      background-image: url(../images/triang-sm.png); } }
  .home #about h3 {
    margin-bottom: 35px; }
  .home #about h4.subtitle {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 1.5;
    max-width: 330px;
    margin-bottom: 35px; }
  .home #about .col {
    line-height: 1.5;
    margin-bottom: 30px; }
    .home #about .col p + p {
      margin-top: 30px; }
    @media (min-width: 768px) {
      .home #about .col {
        max-width: 330px;
        display: inline-block;
        vertical-align: top; }
        .home #about .col + .col {
          margin-left: 45px; } }
    @media (max-width: 767px) {
      .home #about .col {
        font-size: 15px; }
        .home #about .col + .col p {
          color: rgba(255, 255, 255, 0.75); } }

@media (max-width: 1150px) {
  .home .wrapper.bleed-to-edges-on-certain-breakpoint {
    padding: 0; } }

.home #mercados {
  padding-top: 100px; }
  @media (max-width: 767px) {
    .home #mercados {
      padding-top: 50px; } }
  .home #mercados ul.cards {
    text-align: center;
    margin-top: 80px; }
    .home #mercados ul.cards li:not([role="presentation"]) {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -moz-box-sizing: border-box;
      color: white;
      text-align: left;
      display: inline-block;
      max-width: 300px;
      padding: 0 15px 30px;
      vertical-align: top; }
      .home #mercados ul.cards li:not([role="presentation"]) h4 {
        background: #10273a;
        border-radius: 0 15px 0 0;
        font-size: 15px;
        line-height: 1.2;
        margin: 0;
        padding: 30px 20px 20px; }
        .home #mercados ul.cards li:not([role="presentation"]) h4 span {
          color: #85efd1;
          font-weight: 300; }
      .home #mercados ul.cards li:not([role="presentation"]) .text {
        background: #040d1c no-repeat center top;
        background-size: 100% auto;
        border-radius: 0 0 15px 15px;
        font-family: 'Roboto';
        padding: 95px 20px 30px;
        position: relative;
        overflow: hidden; }
        .home #mercados ul.cards li:not([role="presentation"]) .text:before {
          transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          background: white;
          content: "";
          height: 150px;
          left: -75px;
          position: absolute;
          top: -75px;
          width: 150px; }
          @media (min-width: 880px) and (max-width: 999px) {
            .home #mercados ul.cards li:not([role="presentation"]) .text:before {
              top: -100px; } }
        .home #mercados ul.cards li:not([role="presentation"]) .text.seguros {
          background-image: url(../images/mercados-seguros.jpg); }
        .home #mercados ul.cards li:not([role="presentation"]) .text.utilities {
          background-image: url(../images/mercados-utilities.jpg); }
        .home #mercados ul.cards li:not([role="presentation"]) .text.mineria {
          background-image: url(../images/mercados-mineria.jpg); }
        .home #mercados ul.cards li:not([role="presentation"]) .text.infraestructura {
          background-image: url(../images/mercados-infraestructura.jpg); }
        .home #mercados ul.cards li:not([role="presentation"]) .text.catastro {
          background-image: url(../images/mercados-catastro.jpg); }
        .home #mercados ul.cards li:not([role="presentation"]) .text p {
          font-weight: 300;
          font-size: 14px; }
          @media (max-width: 800px) {
            .home #mercados ul.cards li:not([role="presentation"]) .text p {
              font-size: 16px; } }
          .home #mercados ul.cards li:not([role="presentation"]) .text p:after {
            background: #85efd1;
            content: "";
            display: block;
            height: 4px;
            margin-top: 10px;
            width: 60px; }
      @media (max-width: 600px) {
        .home #mercados ul.cards li:not([role="presentation"]) {
          padding: 0 7px 30px; } }
      @media (max-device-width: 320px) {
        .home #mercados ul.cards li:not([role="presentation"]) .text {
          padding: 75px 15px 25px; }
          .home #mercados ul.cards li:not([role="presentation"]) .text:before {
            top: -105px; }
          .home #mercados ul.cards li:not([role="presentation"]) .text p {
            line-height: 1.35; } }

.home #soluciones {
  margin-top: -67%; }
  @media (max-width: 2200px) {
    .home #soluciones {
      margin-top: -61%; } }
  @media (max-width: 2100px) {
    .home #soluciones {
      margin-top: -65%;
      padding-top: 10%; } }
  @media (max-width: 1950px) {
    .home #soluciones {
      margin-top: -64%; } }
  @media (max-width: 1850px) {
    .home #soluciones {
      margin-top: -71%;
      padding-top: 20%; } }
  @media (max-width: 1750px) {
    .home #soluciones {
      margin-top: -68%; } }
  @media (max-width: 1700px) {
    .home #soluciones {
      margin-top: -65%; } }
  @media (max-width: 1600px) {
    .home #soluciones {
      padding-top: 40%;
      margin-top: -100%; } }
  @media (max-width: 1500px) {
    .home #soluciones {
      margin-top: -95%; } }
  @media (max-width: 1400px) {
    .home #soluciones {
      margin-top: -80%; } }
  @media (max-width: 1300px) {
    .home #soluciones {
      margin-top: -65%; } }
  @media (max-width: 1200px) {
    .home #soluciones {
      margin-top: -60%; } }
  @media (max-width: 1100px) {
    .home #soluciones {
      margin-top: -55%; } }
  @media (max-width: 1000px) {
    .home #soluciones {
      padding-top: 40px;
      margin-top: 0;
      background: white; }
      .home #soluciones h3.title.white.white-border {
        color: #234369;
        border-color: #234369; }
        .home #soluciones h3.title.white.white-border:after {
          background: #234369; } }
  @media (min-width: 1001px) {
    .home #soluciones h3.title {
      margin-bottom: 70px; } }
  .home #soluciones h3.title, .home #soluciones #tabs, .home #soluciones #icons {
    position: relative;
    z-index: 3; }
  .home #soluciones .wrapper {
    position: relative; }
  @media (max-width: 1000px) {
    .home #soluciones #tabs {
      display: none; } }
  .home #soluciones #tabs .tab-content:not(:first-child) {
    display: none; }
  .home #soluciones .box {
    background: white;
    border-radius: 0 10px 10px;
    max-width: 240px;
    padding: 40px 30px;
    position: absolute;
    right: 20px;
    margin-top: -40px;
    z-index: 4; }
    .home #soluciones .box p {
      font-family: 'Roboto';
      margin-top: 15px;
      font-weight: 400; }
    .home #soluciones .box .pic {
      display: none; }
  .home #soluciones .ipad {
    margin: 0 5%; }

body.soluciones #icons ul li a {
  border: 0 none; }

body.soluciones .items {
  color: white; }
  body.soluciones .items li.item {
    padding-bottom: 130px; }
    body.soluciones .items li.item:not(:first-child) .row > div {
      margin-top: -110px; }
      @media (max-width: 991px) {
        body.soluciones .items li.item:not(:first-child) .row > div:last-child {
          margin-top: 0; } }
    body.soluciones .items li.item:first-child {
      background: #214065 url("/images/bkg-triang-lg.jpg") no-repeat center top;
      background-size: 100% auto;
      padding-top: 20%;
      margin-top: -18%; }
      @media (max-width: 991px) {
        body.soluciones .items li.item:first-child {
          padding-top: 40%;
          margin-top: -36%; } }
    body.soluciones .items li.item:nth-child(2n+3) {
      background: #214065 url("/images/bkg-lg.jpg") no-repeat center top;
      background-size: 100% auto; }
  body.soluciones .items .icon {
    margin-top: 75px; }
  @media (min-width: 992px) {
    body.soluciones .items .row {
      margin-bottom: 40px; } }
  body.soluciones .items .right {
    text-align: right; }
  body.soluciones .items h2 {
    line-height: 1.1;
    letter-spacing: 1px;
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 25px; }
    body.soluciones .items h2 strong {
      font-weight: 800; }
      body.soluciones .items h2 strong:not(.inline) {
        display: block; }
    body.soluciones .items h2 small {
      color: #10273a;
      display: block;
      font-size: 13px;
      font-weight: 600;
      margin-top: 10px;
      text-transform: none; }
  body.soluciones .items h4 {
    margin-top: 70px; }
  @media (min-width: 768px) {
    body.soluciones .items .col {
      max-width: 46%;
      display: inline-block;
      vertical-align: top; }
      body.soluciones .items .col + .col {
        margin-left: 7%; } }
  @media (max-width: 991px) {
    body.soluciones .items h2 {
      font-size: 36px; }
    body.soluciones .items h3 {
      font-size: 22px; }
    body.soluciones .items h4 {
      margin-top: 50px;
      font-size: 30px; }
    body.soluciones .items .compensate {
      width: 105%; } }
  @media (max-width: 767px) {
    body.soluciones .items h4 {
      margin-top: 30px;
      font-size: 24px; } }

body.mobile-mapping .triang {
  background: url(../images/mm-bkg-triang.png) no-repeat center;
  background-size: 100% auto;
  padding-bottom: 54.44%;
  margin-top: -5%;
  margin-bottom: -1px;
  position: relative;
  z-index: 1; }

body.mobile-mapping .hero {
  padding-top: 80px; }
  body.mobile-mapping .hero .wrapper {
    max-width: 900px; }
    body.mobile-mapping .hero .wrapper .ipad {
      padding-bottom: 37.4%; }
  body.mobile-mapping .hero .ipad .content {
    background: url(../images/videos/mobile-mapping.jpg) no-repeat center top;
    background-size: cover; }

body.mobile-mapping section {
  background: #50b39e url(../images/mm-bkg-lg.jpg) no-repeat center top;
  background-size: 100% auto;
  color: white;
  padding-top: 60px; }
  body.mobile-mapping section .bigger-gap {
    color: #10273a; }
  body.mobile-mapping section .wrapper {
    position: relative;
    z-index: 2; }
  body.mobile-mapping section h1 {
    margin-bottom: 60px;
    margin-top: -50%; }
    @media (min-width: 1300px) {
      body.mobile-mapping section h1 {
        margin-top: -49vw; } }
  body.mobile-mapping section h4 {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 60px; }
    @media (min-width: 1600px) {
      body.mobile-mapping section h4 {
        margin-top: 5vw; } }
    @media (min-width: 2150px) {
      body.mobile-mapping section h4 {
        margin-top: 8vw; } }
  body.mobile-mapping section ul.checkmarks {
    margin-bottom: 30px; }
    body.mobile-mapping section ul.checkmarks li {
      color: white; }
  body.mobile-mapping section ol > li {
    margin-bottom: 60px; }
  body.mobile-mapping section ol .number {
    font-size: 30px;
    font-weight: 800;
    margin-right: 10px;
    float: left;
    line-height: 1.1; }
  body.mobile-mapping section ol .stuff {
    margin-left: 30px; }
  body.mobile-mapping section ol h5 {
    border-bottom: 2px solid white;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 40px;
    padding-bottom: 5px; }
    body.mobile-mapping section ol h5 strong {
      display: block;
      font-weight: 800; }
    body.mobile-mapping section ol h5 + h6 {
      margin-top: -32px; }
  body.mobile-mapping section ol h6 {
    margin-bottom: 40px; }

body.mobile-mapping #triang-gray {
  background: url(../images/mm-triang-gray.png) no-repeat center;
  background-size: 100% auto;
  padding-bottom: 54.44%;
  margin-top: -6%;
  position: relative;
  z-index: 1; }

body.mobile-mapping #orbit {
  color: white;
  padding-bottom: 50px;
  padding-top: 50px; }
  body.mobile-mapping #orbit .wrapper {
    position: relative;
    z-index: 3; }
  body.mobile-mapping #orbit .margin {
    margin-top: -40vw; }
  body.mobile-mapping #orbit h2 {
    border-bottom: 2px solid white;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 10px;
    padding-bottom: 5px; }
    @media (min-width: 768px) {
      body.mobile-mapping #orbit h2 {
        margin-top: 50px; } }
    body.mobile-mapping #orbit h2 strong {
      display: block; }
  body.mobile-mapping #orbit h3 {
    margin-bottom: 15px; }
  body.mobile-mapping #orbit a.btn {
    margin-bottom: 40px; }
  body.mobile-mapping #orbit .iphone .content {
    background: url(../images/videos/orbit.jpg) no-repeat center top;
    background-size: cover; }
  body.mobile-mapping #orbit ul.checkmarks-big {
    margin-top: 100px; }

@media (max-width: 767px) {
  body.mobile-mapping .hero {
    padding-top: 40px; }
  body.mobile-mapping .triang {
    margin-top: -15%; }
  body.mobile-mapping section .bigger-gap {
    color: white; }
  body.mobile-mapping section h1 {
    margin-bottom: 70px; }
  body.mobile-mapping section h4 {
    font-size: 32px;
    margin-bottom: 45px;
    padding-top: 25px; }
  body.mobile-mapping #orbit .iphone {
    margin-bottom: 30px; }
  body.mobile-mapping #orbit ul.checkmarks-big {
    margin-top: 50px; } }

body.genmap-engine #hero {
  background-color: #618EB4;
  background-image: url(../images/hero-ge-lg.jpg); }
  @media (max-width: 1400px) {
    body.genmap-engine #hero {
      background-image: url(../images/hero-ge-md.jpg); } }
  @media (max-width: 900px) {
    body.genmap-engine #hero {
      background-image: url(../images/hero-ge-sm.jpg);
      background-position: 30% top; }
      body.genmap-engine #hero h1 strong {
        display: inline; } }

body.genmap-engine section {
  padding: 50px 0 20px; }
  @media (max-width: 767px) {
    body.genmap-engine section.main {
      background-size: auto;
      padding: 40px 0 10px; }
      body.genmap-engine section.main h2 strong {
        display: inline; } }
  body.genmap-engine section.main .row {
    margin-bottom: 30px; }
  body.genmap-engine section.main img {
    width: 100%;
    max-width: 400px;
    height: auto; }
  body.genmap-engine section ul.checkmark-cards {
    margin-bottom: 70px; }

body.genmap-engine section.gray .row .col-sm-6 {
  margin-bottom: 45px; }

body.genmap-cloud #hero {
  background-color: #172C4C;
  background-image: url(../images/hero-gc-lg.jpg); }
  @media (max-width: 1400px) {
    body.genmap-cloud #hero {
      background-image: url(../images/hero-gc-md.jpg); } }
  @media (max-width: 900px) {
    body.genmap-cloud #hero {
      background-image: url(../images/hero-gc-sm.jpg); } }

body.genmap-cloud .stripe {
  background: #234369;
  background: -moz-linear-gradient(left, #234369 0%, #85efd1 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #234369), color-stop(100%, #85efd1));
  padding: 25px 0; }
  @media (min-width: 1030px) {
    body.genmap-cloud .stripe .text-right {
      padding-right: 140px; } }
  body.genmap-cloud .stripe h2 {
    color: white;
    font-size: 30px;
    margin-top: -2px; }
    @media (max-width: 767px) {
      body.genmap-cloud .stripe h2 {
        margin-bottom: 10px; } }

body.genmap-cloud section .row:not(:last-child) {
  margin-bottom: 50px; }
  @media (max-width: 767px) {
    body.genmap-cloud section .row:not(:last-child) {
      margin-bottom: 30px; } }

body.genmap-cloud section.gray {
  padding: 60px 0; }

body.genmap-cloud section.teal-bkg {
  padding: 60px 0 30px; }
  @media (max-width: 767px) {
    body.genmap-cloud section.teal-bkg {
      background-size: auto; } }

body.genmap-cloud .icon-cloud {
  display: block;
  margin: -50px auto 50px;
  width: 140px; }
  @media (max-width: 767px) {
    body.genmap-cloud .icon-cloud {
      margin-top: -30px; } }

body.genmap-cloud ul.tecnologias {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  body.genmap-cloud ul.tecnologias li {
    margin-bottom: 30px; }
  body.genmap-cloud ul.tecnologias a {
    transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -webkit-transition: all 0.15s ease;
    -o-transition: all 0.15s ease; }
    body.genmap-cloud ul.tecnologias a:hover {
      opacity: 0.75; }

#contacto {
  background: #DFDFDF url(../images/contacto-bkg-lg.jpg) no-repeat center top;
  background-size: 1708px auto;
  padding: 280px 0 0;
  position: relative; }
  @media (max-width: 840px) {
    #contacto {
      background-image: url(../images/contacto-bkg-sm.jpg);
      background-size: auto; } }
  @media (min-width: 1708px) {
    #contacto {
      background-size: cover; } }
  #contacto h3 {
    margin-bottom: 30px; }
  #contacto form {
    margin: 0 auto 50px;
    max-width: 460px; }
    #contacto form input, #contacto form textarea, #contacto form button {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -moz-box-sizing: border-box;
      font-family: 'Montserrat', sans-serif; }
    #contacto form input, #contacto form textarea {
      display: block;
      width: 100%; }
    #contacto form .group {
      margin-bottom: 15px;
      position: relative; }
      #contacto form .group label {
        transition: all 0.15s ease;
        -moz-transition: all 0.15s ease;
        -webkit-transition: all 0.15s ease;
        -o-transition: all 0.15s ease;
        pointer-events: none;
        color: #9e9e9e;
        display: block;
        font-weight: 300;
        left: 25px;
        position: absolute;
        top: 10px; }
        #contacto form .group label.error {
          color: #FF4544; }
      #contacto form .group.fade {
        opacity: 0.55; }
    #contacto form input, #contacto form textarea {
      transition: all 0.15s ease;
      -moz-transition: all 0.15s ease;
      -webkit-transition: all 0.15s ease;
      -o-transition: all 0.15s ease;
      border: 1px solid white;
      background: white;
      border-radius: 3px;
      font-size: 16px;
      padding: 9px 15px 9px 80px; }
      #contacto form input.error, #contacto form textarea.error {
        border-color: #FF4544; }
      #contacto form input:focus, #contacto form input.focus, #contacto form textarea:focus, #contacto form textarea.focus {
        border-color: #85efd1;
        outline: 0 none; }
        #contacto form input:focus + label, #contacto form input.focus + label, #contacto form textarea:focus + label, #contacto form textarea.focus + label {
          left: 15px; }
    #contacto form textarea {
      min-height: 120px; }
    #contacto form span.error {
      color: #FF4544;
      margin-top: 3px;
      display: block; }
    #contacto form #security {
      display: none; }
    #contacto form .action {
      text-align: right; }
    #contacto form .btn.sending {
      background: #DFDFDF; }
    #contacto form .btn.sent {
      background: #85efd1;
      color: white; }
    #contacto form .btn[disabled="disabled"], #contacto form .btn.sending, #contacto form .btn.sent {
      cursor: default;
      pointer-events: none; }
    #contacto form p {
      color: #85efd1;
      margin-top: 9px;
      font-size: 16px;
      line-height: 1.2; }

/*---------------- BODY HEADER -----------------*/

/* Ocultar overflow horizontal */
html, body {
  overflow-x: hidden; }

/* Estilos base para el body */
body {
  -webkit-text-size-adjust: 100%; /* Evitar zoom en dispositivos mobile */
  color: #10273a; 
  font-size: 13px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.4; }

  /* Agregar padding top cuando tiene clase .padding */
  body.padding {
    padding-top: 140px; }
    @media (max-width: 1000px) {
      body.padding {
        padding-top: 110px; } }

    body.padding header {
      -webkit-box-shadow: 0 10px 20px rgba(35, 67, 105, 0.15);
              box-shadow: 0 10px 20px rgba(35, 67, 105, 0.15); }
  
  /* Media queries para adaptar padding top en distintos tamaños */
  body.padding-header { /* Agregar sombra al header cuando .padding */ 
    padding-top: 75px; }
    @media (max-width: 1000px) {
      body.padding-header {
        padding-top: 72px; } }

  body.inner h1.title {
    margin-bottom: 30px; }
    
    @media (max-width: 1000px) {
      body.inner h1.title {
        margin-bottom: 0; } }
  
  /* Remover scroll cuando tiene .avoid-scrolling */
  body.avoid-scrolling {
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
    height: 100vh; }
  
  /* Estilos globales para .wrapper */
  body .wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1260px;
    padding-left: 20px;
    padding-right: 20px; }

    /* Versión más ancha de .wrapper */ 
    body .wrapper.wide {
      max-width: 1400px; }
    @media (max-width: 767px) {
      body .wrapper.mobile_no_padding {
        padding-left: 0;
        padding-right: 0; } }

  /* Estilos para links */
  body a, body .link {
    transition: all, 0.2s;
    -moz-transition: all, 0.2s;
    -webkit-transition: all, 0.2s;
    -o-transition: all, 0.2s;
    color: #10273a;
    text-decoration: none; }

    /* Remover estilos para teléfonos */ 
    body a[href^="tel"], body .link[href^="tel"] {
      color: inherit;
      cursor: default; }

.gray {
  background: #6E6E6E url("/images/gray.jpg"); }

#hero {
  background: #2C475E no-repeat center center;
  background-size: cover;
  height: 500px;
  color: white;
  display: flex;
  align-items: center; }
  #hero .text {
    margin-top: 70px;
    letter-spacing: 1px;
    text-align: right; }
  #hero .wrapper {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%; }
  #hero h1 {
    line-height: 1.2;
    font-size: 46px;
    margin: 0 0 15px; }
    #hero h1 span {
      color: #85efd1;
      display: block;
      font-size: 16px;
      margin-bottom: 8px; }
    #hero h1 strong {
      display: block;
      font-weight: 800; }
  #hero h2 {
    font-weight: 300;
    font-size: 16px; }
  @media (min-width: 878px) {
    #hero .text {
      margin-right: 120px; } }
  @media (max-width: 600px) {
    #hero {
      height: 553px; }
      #hero h1 {
        font-size: 34px; }
      #hero h2 {
        font-size: 15px; }
        #hero h2 br {
          display: none; } }

p.common {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px; }
  p.common strong {
    font-weight: 500; }
  p.common a:hover {
    text-decoration: underline;
    opacity: 0.85; }

@media (max-width: 767px) {
  .center_mobile {
    text-align: center; } }

@media (max-width: 767px) {
  img.center_mobile {
    display: block;
    margin-left: auto;
    margin-right: auto; } }

/* Ocultar elemento */
.hide {
  display: none; }

/* Texto en mayúsculas */  
.uppercase {
  text-transform: uppercase; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

/* OCULTAR/MOSTRAR SEGÚN TAMAÑO DE PANTALLA */
/* Ocultar en pantallas pequeñas */  
@media (max-width: 767px) {
  .hidden-sm {
    display: none; } }
/* Ocultar en pantallas grandes */
@media (min-width: 768px) {
  .visible-xs {
    display: none; } }

img.max {
  max-width: 100%;
  height: auto; }

.title {
  border-bottom: 1px solid #10273a;
  color: #234369;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 1px;
  padding-bottom: 15px;
  position: relative; }
  @media (max-width: 1000px) {
    .title {
      font-size: 30px; } }
  .title.white {
    color: white;
    font-weight: 800; }
  .title.white-border {
    border-color: white; }
    .title.white-border:after {
      background: white; }
  .title.dark {
    color: #10273a; }
  .title strong {
    display: block;
    font-weight: 800; }
  .title:before, .title:after {
    background: #85efd1;
    bottom: -2px;
    content: "";
    height: 12px;
    left: -20px;
    max-width: 100%;
    position: absolute;
    width: 50px; }
  .title:after {
    background: #10273a;
    bottom: -8px;
    height: 8px;
    left: 0;
    width: 260px; }

.title-md {
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 0px; }
  @media (max-width: 1000px) {
    .title-md {
      font-size: 26px; } }
  .title-md.white {
    color: white; }

.title-alt {
  color: #10273a;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 30px; }
  .title-alt.line {
    padding-bottom: 20px;
    border-bottom: 1px solid #10273a; }
  @media (max-width: 1000px) {
    .title-alt {
      font-size: 30px; } }
  .title-alt strong {
    display: block;
    font-weight: 800; }

.title-light {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 30px; }

.teal-bkg {
  background: #214065 url("/images/bkg-lg.jpg") no-repeat center top;
  background-size: 100% auto; }

@media (min-width: 768px) {
  .col-sm-6.bigger-gap:first-child {
    padding-right: 35px; }
  .col-sm-6.bigger-gap:last-child {
    padding-left: 35px; } }

@media (min-width: 1000px) {
  .col-sm-6.bigger-gap:first-child {
    padding-right: 70px; }
  .col-sm-6.bigger-gap:last-child {
    padding-left: 70px; } }

@media (min-width: 878px) {
  .slide-it-in {
    margin-left: 5%; } }

/* LINKS DE REDES SOCIALES */

ul.social li {
  /* Efecto de transición suave */
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px; }
  ul.social li a {
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    background: #10273a;
    border-radius: 4px;
    color: white;
    display: block;
    font-size: 20px;
    height: 32px;
    line-height: 34px;
    text-align: center;
    width: 32px; }
      
    /* Cambiar color de fondo al hover */
    ul.social li a:hover {
      background: #85efd1;
      color: #234369; }

.mfp-bg {
  -webkit-backdrop-filter: blur(5px);
  height: 100% !important; }

.mfp-wrap {
  top: 20px !important;
  height: calc(100% - 40px) !important; }

.mfp-container {
  background: white;
  margin: 10px auto;
  max-width: 350px;
  padding: 20px;
  position: relative;
  height: auto; }
  .mfp-container .icon-title h4 {
    font-size: 16px; }
  .mfp-container .icon-title h5 {
    font-size: 15px; }
  .mfp-container p {
    font-family: 'Roboto';
    margin-top: 15px;
    font-weight: 400;
    font-size: 16px; }
  .mfp-container .ipad {
    display: none; }
  .mfp-container .pic {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 25px; }

.inner {
  padding-top: 100px; }



/* -------- NOVEDADES ----------*/

.novedades .wrapper.inner {
  max-width: 820px;
}

/* Pantallas pequeñas */
@media (max-width: 576px) {
  .novedades .wrapper.inner {
    width: 100%;
  }
}

/* Pantallas medianas */
@media (max-width: 768px) {
  .novedades .wrapper.inner {
    width: 80%;
  }
}


.text_newsletters {
  font-size: 24px; /* Puedes ajustar el valor según tus preferencias */
}


/* ------------------ VISUALIZADOR DE PDF ---------------------*/



/* Estilos para el botón 'VER PDF'*/
#view-pdf {
  margin: 10px auto;
  padding: 5px 10px;
  background-color: rgb(67, 91, 119);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

/* Estilos para el botón desplegable*/
#pdf-select {
  margin: 10px auto;
  padding: 5px 5px;
  background-color: rgb(67, 91, 119);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

/* Estilos para el PDF */
#pdf-viewer {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Media query para pantallas pequeñas (por ejemplo, dispositivos móviles) */
@media screen and (max-width: 768px) {
  #pdf-viewer {
    /* Estilos específicos para pantallas pequeñas */
    /* Por ejemplo, puedes ajustar el tamaño del visualizador */
    max-width: 100%; /* O cualquier otro valor que consideres adecuado */
    max-height: 150vh; /* Ajusta según lo necesario */
  }
}



#icons {
  background: white;
  padding: 40px 0;
  text-align: center; }
  @media (max-width: 1150px) {
    #icons .wrapper.wide {
      padding: 0; } }
  @media (min-width: 1500px) {
    #icons ul {
      -webkit-transform: scale(1.1, 1.1);
      transform: scale(1.1, 1.1); } }
  #icons ul li {
    display: inline-block;
    text-align: left;
    margin: 15px 12px;
    vertical-align: top; }
    @media (min-width: 1251px) {
      #icons ul li:nth-child(6) {
        margin-left: 0 !important; }
      #icons ul li:last-child {
        margin-right: 0 !important; } }
    @media (max-width: 1370px) {
      #icons ul li {
        margin: 15px 6px; } }
    @media (max-width: 1310px) {
      #icons ul li {
        margin: 15px 3px; } }
    @media (max-width: 1280px) {
      #icons ul li {
        margin: 15px 0; } }
    @media (max-width: 1250px) {
      #icons ul li {
        margin: 5px 20px; } }
    @media (max-width: 1080px) {
      #icons ul li {
        margin: 5px 10px; } }
    #icons ul li a {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -moz-box-sizing: border-box;
      transition: all 0.15s ease;
      -moz-transition: all 0.15s ease;
      -webkit-transition: all 0.15s ease;
      -o-transition: all 0.15s ease;
      color: #234369;
      border: 2px solid white;
      display: block;
      border-radius: 0 10px 10px 10px;
      padding: 20px 10px; }
      #icons ul li a:hover {
        border-color: #caede5;
        background: rgba(202, 237, 229, 0.5); }
    @media (min-width: 1001px) {
      #icons ul li.active a {
        background: #caede5;
        border-color: #4B97B0; } }
  @media (max-width: 550px) {
    #icons ul {
      text-align: left; }
      #icons ul li {
        width: 45%;
        margin: 5px 2%; }
        #icons ul li .icon-title img {
          margin: 0 auto 15px; }
        #icons ul li .icon-title .text, #icons ul li .icon-title img {
          display: block; } }

.icon-title img {
  margin-right: 15px; }
  .icon-title img.up5 {
    margin-top: -5px; }

.icon-title .text, .icon-title img {
  display: inline-block;
  vertical-align: top; }

.icon-title h4 {
  font-weight: 800;
  letter-spacing: 0.5px; }

.icon-title h5 {
  font-weight: 700; }

.ipad, .iphone {
  background: url("/images/ipad.png") no-repeat center top;
  background-size: 100% auto;
  padding-bottom: 33.73%;
  overflow: hidden;
  position: relative; }
  .ipad .content, .iphone .content {
    background: no-repeat center top;
    background-size: 100% auto;
    border-radius: 2px 2px 0 0;
    height: 88.5%;
    left: 8.7%;
    overflow: hidden;
    position: absolute;
    top: 11.5%;
    width: 82.2%; }
    .ipad .content video, .iphone .content video {
      width: 100%;
      height: auto; }

.iphone {
  background-image: url("/images/iphone.png");
  padding-bottom: 50%; }
  .iphone .content {
    border-radius: 2.2em;
    height: 73%;
    left: 2.5%;
    top: 9.5%;
    width: 90%; }
    @media (max-width: 600px) {
      .iphone .content {
        border-radius: 5vw; } }
    .iphone .content video {
      -webkit-transform: scale(1, 1.03);
      transform: scale(1, 1.03); }
  .iphone:after {
    background: url("/images/notch.png");
    content: "";
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1; }

#orto-verdadera .ipad .content, #orto-verdadera .iphone .content {
  background-image: url("/images/videos/orto-verdadera.jpg"); }

#ortomosaico .ipad .content, #ortomosaico .iphone .content {
  background-image: url("/images/videos/ortomosaico.jpg"); }

#digital .ipad .content, #digital .iphone .content {
  background-image: url("/images/videos/digital.jpg"); }

#mesh .ipad .content, #mesh .iphone .content {
  background-image: url("/images/videos/mesh.jpg"); }

#dtm .ipad .content, #dtm .iphone .content {
  background-image: url("/images/videos/dtm.jpg"); }

#nubes-de-puntos .ipad .content, #nubes-de-puntos .iphone .content {
  background-image: url("/images/videos/nubes-de-puntos.jpg"); }

#altimetrica .ipad .content, #altimetrica .iphone .content {
  background-image: url("/images/videos/altimetrica.jpg"); }

#catastral .ipad .content, #catastral .iphone .content {
  background-image: url("/images/videos/catastral.jpg"); }

#mobile-mapping .ipad .content, #mobile-mapping .iphone .content {
  background-image: url("/images/videos/mobile-mapping.jpg"); }

#genmap-cloud .ipad .content, #genmap-cloud .iphone .content {
  background-image: url("/images/videos/genmap-cloud.jpg"); }

#genmap-engine .ipad .content, #genmap-engine .iphone .content {
  background-image: url("/images/videos/genmap-engine.jpg"); }

.icon {
  background: white no-repeat center center;
  background-size: 50px auto;
  border-radius: 0 14px 14px;
  display: inline-block;
  height: 70px;
  margin-bottom: 30px;
  width: 75px; }
  .icon.orto-verdadera {
    background-image: url("/images/soluciones/orto-verdadera.svg"); }
  .icon.ortomosaico {
    background-image: url("/images/soluciones/ortomosaico.svg"); }
  .icon.digital {
    background-image: url("/images/soluciones/digital.svg"); }
  .icon.mesh {
    background-image: url("/images/soluciones/mesh.svg"); }
  .icon.dtm {
    background-image: url("/images/soluciones/dtm.svg"); }
  .icon.nubes-de-puntos {
    background-image: url("/images/soluciones/nubes-de-puntos.svg");
    background-size: 60px auto; }
  .icon.altimetrica {
    background-image: url("/images/soluciones/altimetrica.svg"); }
  .icon.catastral {
    background-image: url("/images/soluciones/catastral.svg"); }
  .icon.mobile-mapping {
    background-image: url("/images/soluciones/mobile-mapping.svg"); }
  .icon.genmap-cloud {
    background-image: url("/images/soluciones/genmap-cloud.svg"); }
  .icon.genmap-engine {
    background-image: url("/images/soluciones/genmap-engine.svg"); }


    

/*--------------------------------Hover Animation--------------------------------*/

.container_animado {

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animado {
  margin-bottom: 20px;
  
  margin-right: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  cursor: pointer;
  width: 22em;
  
  max-width: 100%;
  
  padding: 2em 0;
  background: #FFF;
  box-shadow: 0 0 6px 0 rgba(32, 32, 36, 0.12);
  transition: all 0.35s ease;
}

.animado::before, .animado::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  height: 4px;
}

.animado::before {
  width: 0;
  opacity: 0;
  transition: opacity 0.5s ease, width 0.5s ease;
  transition-delay: 0.5s;
}

.animado::after {
  width: 100%;
  background: white;
  transition: width 0.5s ease;
}

.animado .content {
  width: 18em; /* CLAVE */

  max-width: 100%;

}

.animado .logo {
  max-width: 100%;
  
  margin: 0 0 1em;
  width: 10.625em;
  transition: all 0.35s ease;
}

.animado h6 {
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
}

.animado .hover_content {
  overflow: hidden;
  max-height: 0;
  transform: translateY(1em);
  transition: all 0.55s ease;
}

.animado:hover {
  width: 24em;
  box-shadow: 0 10px 20px 0 rgba(32, 32, 36, 0.12);
}

.animado:hover::before {
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease, width 0.5s ease;
  transition-delay: 0;
}

.animado:hover::after {
  width: 0;
  opacity: 0;
  transition: width 0s ease;
}

.animado:hover .logo {
  margin-bottom: 0.5em;
}

.animado:hover .hover_content {
  max-height: 10em;
  transform: none;
}


/* Media queries */

/* Pantallas pequeñas */
@media (max-width: 576px) {
  
  .container_animado {  
    flex-wrap: wrap;
  }

  .animado {
    margin-right: 0; 
    width: 100%;
  }

  .animado:hover {
    width: 100%;
  }

}

/* Pantallas medianas */  
@media (min-width: 577px) and (max-width: 768px) {
  .container_animado {  
    flex-wrap: wrap;
  }

  .animado {
    width: 45%;
  }

}

/* Pantallas grandes */
@media (min-width: 769px) {
  .container_animado {
    flex-wrap: wrap;
  }

  .animado {
    width: calc(25% - 20px); 
  }
  
  .animado:hover {
    width: calc(25% - 20px); 
  }

}



/* ------------------------- TESTIMONIALS -------------------*/

.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
  z-index: 999;
}
.white-heading {
  color: #ffffff;
}
.heading:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: url(img/heading-line.png);
  background-repeat: no-repeat;
  background-position: center;
}
.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
  background-repeat: no-repeat;
  background-position: center;
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
}
.white-heading span {
  color: #ffffff;
}

/*-----Testimonial-------*/

.testimonial:after {
  position: absolute;
  top: -0 !important;
  left: 0;
  content: " ";
  background: url(img/testimonial.bg-top.png);
  background-size: 100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99;
}

.testimonial {
  min-height: 375px;
  position: relative;

  padding-top: 50px;
  padding-bottom: 50px;
  background-position: center;
  background-size: cover;
}
#testimonial4 .carousel-inner:hover {
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active {
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item {
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control {
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
  transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}
.testimonial4_control_button .carousel-control.left {
  left: 7%;
  top: 50%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right {
  right: 7%;
  top: 50%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header {
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}
.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  width: 136px;
  height: 136px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  margin: 40px 0 20px 0;
}
.testimonial4_slide h4 {
  color: #ffffff;
  font-size: 22px;
}

.testimonial .carousel {
  padding-bottom: 50px;
}
.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px;
}
/* ------testimonial  close-------*/



/* Slider clientes */

.container_clientes {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}



.customer-logos-slide {
  margin: 0px 20px;
}

.customer-logos-slide img {
  width: 60%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.customer-logos-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .customer-logos-slide {
  float: right;
}
.customer-logos-slide img {
  display: block;
}
.customer-logos-slide.slick-loading img {
  display: none;
}
.customer-logos-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .customer-logos-slide {
  display: block;
}
.slick-loading .customer-logos-slide {
  visibility: hidden;
}
.slick-vertical .customer-logos-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}


/*-------------------------------*/

.hrfoot{
  opacity: 0.3;
  width: 80%;
  margin: 0;

}

@media (max-width: 767px) { /* Aplica estos estilos solo en pantallas de 767px o menos (dispositivos móviles) */
  .hrfoot {
    width: 30%;
    margin: 0 35%; /* Ajusta el margen según tus preferencias */
  }
}


