/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #202870;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Botón para subir */

.back-to-top {
  position: fixed;
  display: none;
  background: #202870;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}


/*--------------------------------------------------------------
# Header  - ajustar para el tamaño de logo 
--------------------------------------------------------------*/

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 5px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}


#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 7px 0;
  max-height: 65px;
}

.main-pages {
  margin-top: 60px;
}

#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}


.header-scrolled .logo img {
  padding: 0;
  margin: 7px 0;
  max-height: 40px !important;
}


/*--------------------------------------------------------------
# INTRO
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg3.png") center bottom no-repeat; /* AGREGAR AQUI la imagen del banner */ 
  background-size: cover;
  padding: 200px 0 120px 0;
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 60%;  
  float: left;
}

#intro .intro-info h2 {
  color: #fff;
  text-shadow: 3px 3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, -3px -3px 0 #000, 3px 0px 0 #000, 0px 3px 0 #000, -3px 0px 0 #000, 0px -3px 0 #000;
  margin-bottom: 40px;
  font-size: 43px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #000;
  text-decoration: underline;
}

/* color del boton del banner */
#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #202870;
  border: 2px solid #202870;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

/*--------------------------------------------------------------
# Menu de navegación - se pueden modificar por colores corporativos
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 3px 0 0 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #004289;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #007bff;
  text-decoration: none;
}



/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}


.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# SECCIONES
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 100%;
}


/* SECCION NOSOTROS
--------------------------------*/

#nosotros {
  background: #fff;
  padding: 60px 0;
}



/* Sección de productos
--------------------------------*/
.section-bg {
  background: #ecf5ff;  /* EL COLOR DE LA SECCION SE PUEDE CAMBIAR O PONER IMAGEN DE FONDO */
}

.section-bg2 {
  background: #e3e3e4;  /* EL COLOR DE LA SECCION SE PUEDE CAMBIAR O PONER IMAGEN DE FONDO */
}

#productos {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

/* ESTILOS PARA LAS CAJAS DE PRODUCTOS */
#productos .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#productos .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#productos .box img{
	margin-bottom: 15px;
}

#productos .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#productos .description {
  line-height: 24px;
  margin-bottom: 0;
}

#productos {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

/* ESTILOS PARA LAS CAJAS DE PUBLICIDAD */
#publicidad-impresa .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#publicidad-impresa .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#publicidad-impresa .box img{
  margin-bottom: 15px;
}

#publicidad-impresa .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#publicidad-impresa .description {
  line-height: 24px;
  margin-bottom: 0;
}

/* ESTILOS PARA LAS CAJAS DE SERVICIOS DIGITALES */
#servicios-digitales .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#servicios-digitales .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#servicios-digitales .box img{
  margin-bottom: 15px;
}

#servicios-digitales .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#servicios-digitales .description {
  line-height: 24px;
  margin-bottom: 0;
}

#valores {
  padding: 60px 0;
  background: #2d3a9c;
}



/* SECCION valores */
#valores .section-header h3,
#valores .section-header p {
  color: #fff;
}

/* CONFIGURACION DE LAS CAJAS */

#valores .card {
  background: #1d266b;
  border-color: #1d266b;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#valores .card:hover {
  background: #171e55;
  border-color: #171e55;
}

/* ESTILOS DE LOS ICONOS */
#valores .card i {
  font-size: 48px;
  padding-top: 18px;
  color: #fff;
}

#valores .card p {
  font-size: 17px;
  color: #fff;
}

#valores .card h2 {
  font-size: 19px;
  color: #fff;
  font-weight: bold;
}


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

#contacto {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contacto .section-header {
  padding-bottom: 30px;
}

#contacto .info {
  color: #000;
  text-align: center;
  font-size: 16px;
}

#contacto .info i {
  font-size: 32px;
  color: #202870;
  float: center;
  line-height: 1;
}


#contacto .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contacto .form input,
#contacto .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contacto .captcha{
	display: inline;
	width: 150px !important;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#contacto .form .btn-submit {
  background: #202870;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contacto .form .btn-submit:hover {
  background: #0067d5;
  cursor: pointer;
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
	
	#header .logo img{
		height: 40px;
	}

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}

.cta {
    display: block;
    display: scroll;
    position: fixed;
    bottom: 400px;
    right: 0px;
    z-index: 99;
    background-color: #2cb741;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    -webkit-box-shadow: -11px 11px 9px -7px rgba(0,0,0,0.61);
    -moz-box-shadow: -11px 11px 9px -7px rgba(0,0,0,0.61);
    box-shadow: -11px 11px 9px -7px rgba(0,0,0,0.61);
    border-radius: 5px 0px 0px 5px;
}

.cta a {
    color: #ffffff !important;
}

.banner {
   background-color: #202870;
   padding: 10px 20px;
   font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 5px outset  #283185;
    margin-top: 15px 0px;
    border-radius: 6px;
}

.banner:hover {
   background-color: #191f57;
   border: 4px outset  #242c78;
}

@media (max-width: 990px) {
  .banner {
   font-size: 15px;
}
}

.boton-modal {
  background-color: #ec202b;
  border-color: #ec202b;
}

.boton-modal:hover {
  background-color: #c31922;
  border-color: #c31922;
}