/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* - - - - - - - - - - - - - - - - GENERAL STYLES - - - - - - - - - - - - - - - - */

*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

*::after, *::before {
  content: '';
}

*::-moz-selection {
    color: #fff;
    background: #2a9ce8;
}

*::selection {
    color: #fff;
    background: #2a9ce8;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b6b6b6;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #b6b6b6;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #b6b6b6;
}
:-moz-placeholder { /* Firefox 18- */
  color: #b6b6b6;
}

html {
    height: 100%;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #001c2b;
    height: 100%;
    position: relative;
    background-color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

a {
    color: #001c2b;
    text-decoration: none;
}

img {
    display: block;
    margin: 0;
}

h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

p {
  margin-bottom: 12px;
}

strong {
    font-weight: 600;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.cont-center {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.section {
  width: 100%;
  position: relative;
  float: left;
}

.enlace-inline {
  color: #2a9ce8;
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.col-50 {
  width: 50%;
  position: relative;
}

.col-33 {
  width: 33.33%;
  position: relative;
}

.col-25 {
  width: 25%;
  position: relative;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clearfix {
  clear: both;
}

.padd-izquierdo {
  padding: 0px 0px 0px 5%;
}

.padd-derecho {
  padding: 0px 5% 0px 0px;
}

.cta {
  background-color: #2a9ce8;
  border-radius: 4px;
  padding: 8px 16px;
  color: white;
  font-weight: 700;
  margin: 0px 0px 0px 0px;
  cursor: pointer;
  transition: all .33s;
  outline: none;
}

.cta-orange {
  background-color: #cd7433 !important;
}

.cta-orange:hover {
  background-color: #bf5b17 !important;
}

.cta:hover {
  background-color: #2589c1;
}

.cta:focus {
  box-shadow: rgba(0,0,0,0.35) 0px 2px 4px;
}

@media screen and (max-width: 992px) {
.cont-center {
  max-width: 700px;
}
.col-50 {
  width: 100%;
}
.padd-izquierdo {
  padding: 0px 0px 0px 0px;
}

.padd-derecho {
  padding: 0px 0px 0px 0px;
}
}

@media screen and (max-width: 768px) {
h1 {
  font-size: 24px;
  line-height: 32px;
}

h2 {
  font-size: 19px;
  line-height: 28px;
}
.col-25 {
  width: 50%;
}
}

@media screen and (max-width: 480px) {
.col-25 {
  width: 100%;
}
}

/* - - - - - - - - - - - - - - - - HEADER - - - - - - - - - - - - - - - - */

.header {
  position: fixed;
  width: 100%;
  background-color: #F8F8F8;
  box-shadow: rgba(0,0,0,0.15) 0px 1px 3px;
  z-index: 9;
  padding: 12px 0px;
}

.logo-mv {
  max-width: 80px;
  width: 100%;
  position: relative;
  z-index: 2;
  display: block;
}

.logo-mv img {
  width: 100%;
}

.menu-header {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: right;
  z-index: 1;
}

.menu-header li {
  display: inline;
  margin: 0px 0px 0px 48px;
  position: relative;
}

.element::before {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #2a9ce8;
  position: absolute;
  left: 50%;
  margin: 0px 0px 0px -2px;
  top: 24px;
  opacity: 0;
}

.menu-header li a {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  transition: all .33s;
}

.menu-header li a:hover {
  color: #2a9ce8;
}

.menu-contacto:hover {
  color: #ffffff !important;
}

.relleno {
  width: 100%;
  background-color: white;
  float: left;
  height: 70px;
}

@media screen and (max-width: 768px) {
.logo-mv {
  max-width: 60px;
}
.menu-header {
  display: none;
}
.relleno {
  height: 58px;
}
}

.burger-mobile {
  padding: 12px 16px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
}

.burger-mobile i {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  transition: all .33s;
}

.burger-mobile:hover i {
  color: #2a9ce8;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0,0,0,0.4);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 999999;
  display: none;
}

.menu-mobile {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -100%;
  background-color: #ffffff;
  border-radius: 16px 16px 0px 0px;
  padding: 16px 0px 16px 0px;
  z-index: 8;
}

.menu-mobile ul {
  
}

.menu-mobile ul li {
  border-bottom: 1px solid #F0F0F0;
}

.menu-mobile ul li:first-child {
  border-top: 1px solid #F0F0F0;
}

.menu-mobile ul li a {
  padding: 12px 24px;
  display: block;
  font-weight: 700;
  background-color: #ffffff;
}

.menu-mobile ul li a:hover {
  background-color: #F0F0F0;
}

.close-mobile {
  padding: 6px 12px;
  position: absolute;
  right: 6px;
  top: 11px;
  cursor: pointer;
  border-radius: 30px;
  background-color: #ffffff;
  box-shadow: rgba(0,0,0,0.25) 0px 1px 3px;
  z-index: 9;
}

.close-mobile i {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  transition: all .33s;
}

@media screen and (max-width: 768px) {
.burger-mobile {
  display: block;
}
}

/* - - - - - - - - - - - - - - - - INICIO - - - - - - - - - - - - - - - - */

.section-intro {
  padding: 40px 0px 64px 0px;
}

.info-intro {
  padding: 7% 5% 0px 0px;
}

.main-title {
  
}

.img-intro {
  width: 100%;
  margin: 0px 0px 0px 0px;
}

.section-dos {
  padding: 40px 0px;
  background-color: #e3f4ff;
}

.info-dos {
  padding: 7% 0px 0px 5%;
}

.section-clientes {
  padding: 40px 0px 0px 0px;
  display: none;
}

.cont-clientes {
  width: 33.33%;
  float: left;
  position: relative;
}

.img-cliente {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: all .33s;
  opacity: 0.4;
}

.img-cliente:hover {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  opacity: 1;
}

@media screen and (max-width: 992px) {
.section-intro {
  padding: 24px 0px 40px 0px;
}
.info-intro {
  padding: 0% 0% 32px 0px;
}
.info-dos {
  padding: 0% 0px 32px 0%;
}
}

@media screen and (max-width: 600px) {
.cont-clientes {
  width: 100%;
}
}

/* - - - - - - - - - - - - - - - - FOOTER - - - - - - - - - - - - - - - - */

.footer {
  padding: 40px 0px;
  background-color: #f8f8f8;
}

.footer img {
  width: 64px;
  margin: 0px 0px 24px 0px;
}


.footer p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}



.footer p a {
  transition: all .33s;
  opacity: 0.5;
}


.footer p a:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
.footer p:last-child {
  margin-bottom: 24px;
}
}







/* - - - - - - - - - - - - - - - - SERVICIOS - - - - - - - - - - - - - - - - */

.section-servicios {
  padding: 40px 0px 64px 0px;
}

.img-serv {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 0px auto;
}

.thumb-servicio {
  width: 100%;
  float: left;
  text-align: center;
  transition: all .33s;
  padding: 0px 0px 16px 0px;
  position: relative;
}

.shadow-padd {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: rgba(0,0,0,0.35) 0px 1px 4px -1px;
  padding: 24px 24px;
  transition: all .33s;
  cursor: pointer;
  position: relative;
}

.shadow-padd:hover {
  background-color: #F7F7F7;
  box-shadow: rgba(0,0,0,0.5) 0px 6px 12px -5px;
}

.img-thumb {
  color: #2a9ce8;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 8px;
}

.titulo-thumb {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0px;
}

.parrafo-thumb {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
}

.arrow-thumb {
  color: #2a9ce8;
  font-size: 24px;
  line-height: 32px;
  position: absolute;
  bottom: 16px;
  right: 32px;
  margin: 0;
  display: block;
  opacity: 0;
  transition: all .33s;
}

.shadow-padd:hover .arrow-thumb {
  opacity: 1;
  right: 24px;
}

.breadcrumb {
  width: 100%;
  margin: 0px 0px 16px 0px;
}

.breadcrumb li {
  display: inline;
  font-size: 12px;
  line-height: 16px;
  margin-right: 12px;
}

.breadcrumb li:last-child {
  margin-right: 0px;
}

.breadcrumb li a {
  font-size: 12px;
  line-height: 16px;
  color: #2a9ce8;
  text-decoration: underline;
}

@media screen and (max-width: 992px) {
.section-servicios {
  padding: 24px 0px 40px 0px;
}
.img-serv {
  margin: 0 auto 32px auto;
}
}

.ancla {
  width: 100%;
  position: relative;
  top: -80px;
}

.img-servicios {
  width: 100%;
  margin: 0px auto 0px auto;
}

@media screen and (max-width: 992px) {
.img-servicios {
  width: 100%;
  margin: 40px auto 0px auto;
}
}

/* - - - - - - - - - - - - - - - - QUIENES SOMOS - - - - - - - - - - - - - - - - */

.section-who {
  padding: 40px 0px 64px 0px;
}

.img-perfil {
  width: 100%;
  border-radius: 16px;
}

.tag-info {
  width: 100%;
  padding: 24px 0px 0px 0px;
}

.nombre {
  color: #2a9ce8;
  margin: 0px 0px 4px 0px;
  text-align: right;
}

.cargo {
  color: #2a9ce8;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
}

@media screen and (max-width: 992px) {
.section-who {
  padding: 24px 0px 40px 0px;
}
.img-perfil {
  margin-top: 40px;
}
.nombre {
  text-align: left;
}

.cargo {
  text-align: left;
}
}

/* - - - - - - - - - - - - - - - - CONTACTO - - - - - - - - - - - - - - - - */

.section-contact {
  padding: 40px 0px 64px 0px;
}

.formulario {
  width: 100%;
  margin: 0;
}

.label {
  font-size: 16px;
  line-height: 24px;
  margin: 0px 0px 4px 0px;
  width: 100%;
  display: block;
}

.campo {
  border-radius: 4px;
  background-color: #fff;
  border: solid #D9D9D9 1px;
  margin: 0px 0px 16px 0px;
  width: 100%;
  padding: 12px 12px;
  outline: none;
  transition: all .33s;
}

.campo:focus {
  border: solid #2a9ce8 1px;
}

.legal {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}


.legal i {
  color: #2a9ce8;
}

.btn {
  border: none;
}

.dato-contacto i {
  color: #2a9ce8;
  margin-right: 8px;
}

.img-contacto {
  width: 100%;
  margin: 0px auto 40px auto;
}

.g-recaptcha {
  float: left;
  margin-bottom: 16px;
}

.alerta-nombre,
.alerta-apellido,
.alerta-email,
.alerta-email2,
.alerta-comentario,
.alerta-empresa {
  color: red;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 16px;
  margin-top: -8px;
}

.no-visible {
  display: none;
}

.visible {
  display: block;
}

@media screen and (max-width: 992px) {
.section-contact {
  padding: 24px 0px 40px 0px;
}
.img-contacto {
  margin: 32px auto 40px auto;
}
}

@media screen and (max-width: 420px) {
.btn {
  float: left;
  margin-top: 16px;
}
.g-recaptcha {
  width: 100%;
}
}
