/*---------------------------------------- PALETA DE COLORES -------------------------------------------------------
Celeste: #007bff
celeste original: #19a6c7
Azul: #053568
Gris claro: #96a2b2
Gris oscuro: #737373
Blanco opaco: 
dark(footer): #26272b
*/

body {
    background-color: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
    padding-top: 4rem;
}

@media (max-width: 768px) {
  body {
    padding-top: 3.6rem;
  }
}

.btn-primary {
  color: #19a6c7;
  background-color: #ffffff;
  border: 2px solid #19a6c7;
  text-shadow: none;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #053568;
  border-color: #053568;
}

.slogan h5 {
  font-weight: 700;
  font-style: italic;
  line-height: 0.8em;
  text-shadow: initial;
}

@media (max-width: 768px) {
  .slogan h5 {
    font-size: 16px;
  }
}

.slogan a:hover {
  text-decoration: none;
}

/* ________________________________________________________ Clientes ____________________________________________________________ */

/* -----------------------------------------Estilos de la barra de navegación--------------------------------------------- */
.navbar {
    background-color: #ffffff;
    padding: 0 20px;
    cursor: pointer;
}

.navbar-border {
    border-bottom: 0.8px solid #19a6c74b;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}
.nav-link {
    color: #19a6c7 !important;
    font-weight: 700;
    font-size: 14px;
    padding: 20px 0;
}
@media (min-width: 768px) {
.navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    }
}

 .activo a {
    color: #053568 !important;
    font-size: 1.1rem;
}

.nav-item:hover {
    border-bottom: 2.5px solid #19a6c7;
    color: #19a6c7;
    font-size: 1.2rem;
}

@media only screen and (min-width: 768px) { 
    /* Para escritorio */
    .nav-item {
    padding: 0px 7px;
    height: 65px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 35px;
    }
}
#logo {
    width: 30%;
}

.navbar-toggler-icon {
    border: 1px solid rgb(255, 255, 255);
}

.fa-bars {
    padding: 5px;
    color: #19a6c7;
}
main {
    margin-top: 0;
}

/* ------------------------------------------- Inicio de estilos header ------------------------------------------------------ */
.sombra {
  filter: drop-shadow(-1px 8px 3px rgb(214, 214, 214));
}

.header {
    height: 30vh;
    background-image: url(../images/textura-pared-celeste2.jpg);
	  /*background: rgb(5,53,104);
    background: linear-gradient(194deg, rgba(5,53,104,1) 0%, rgba(0,123,255,0.8715861344537815) 37%, #19a6c7 100%);*/
	  background-size: cover;
  	background-position: top;
  	position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 20vh, 0 100%);
}

.text-box {
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
    text-align: center;
}

.heading-primary {
  	color: rgb(255 255 255);
  	text-transform: uppercase;
  	backface-visibility: hidden;
    margin-bottom: 30px;
    text-shadow: 0.5px 0.5px black;
}

.heading-primary-main {
  	display: block;
  	font-size: 40px;
  	font-weight: 700;
  	letter-spacing: 5px;
}

/* ---------------------------------------------- Fin de estilos header ------------------------------------------------------ */

/* ----------------------------------------- Estilos de página de contacto --------------------------------------------------- */
.contacto {
    background-color: #f7f7f7ea !important;
}

.contacto iframe {
  box-shadow: 0 0 20px -10px #000;
}

.contacto li {
  list-style: none;
}

.datosContacto {
  padding-top: 20px;
  margin-top: 5px;
  color: #737373;
}

.contacto .form {
  width: 100%vh;
  height: 100%vh;
  border-radius: 8px;
  box-shadow: 0 0 20px -10px #000;
  margin: calc(50vh - 220px) auto;
  padding: 20px 30px;
  margin: 5px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  position: relative;
}

.contacto h2 {
  margin:10px 0;
  padding-bottom:10px;
  color:#737373a9;
  border-bottom:3px solid #737373a9;
}

.form input, textarea {
  width:100%;
  padding:10px;
  box-sizing:border-box;
  background:none;
  outline:none;
  resize:none;
  border:0;
  transition:all .3s;
  border-bottom:2px solid #737373a9;
}

.form input:focus{
  border-bottom:2px solid #737373a9;
}

.form span {
  color: #737373;
}
.form p:before{
  content:attr(type);
  display:block;
  margin:28px 0 0;
  font-size:14px;
  color:#737373a9;
}

.form button {
  padding:8px 12px;
  margin:8px 0 0;
  border:2px solid #96a2b2;
  background:0;
  color:#737373a9;
  cursor:pointer;
  transition:all .3s;
}

.form button:hover{
  background:#737373a9;
  color:#fff;
}

/* ---------------------------------------Fin de estilos de página de contacto --------------------------------------------------- */

/* ------------------------------------------- Inicio de Footer -------------------------------------------------------- */

.site-footer
{
  background-color:#26272b;
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#19a6c7;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d
}
.copyright-text
{
  margin:0
}

@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#737373;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#737373;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#19a6c7
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}

.social-icons a:hover
{
  background-color:#19a6c7
}

@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600;
  }
}

@media screen and (max-width: 767px) {
  footer .infofooter {
    margin-bottom: 5px;
  }
  footer .enlaces, .datafiscal {
    display: none !important;
  }
  footer ul {
    margin-top: 10px;
  }
}

.copyright-text a {
    font-weight: bold;
}

/* ------------------------------------------- Inicio estilos quienes somos -----------------------------------------------------*/

.snip1515 {
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #000000;
  text-align: center;
  line-height: 1.4em;
  font-size: 14px;
  box-shadow: none !important;
}

.snip1515 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.snip1515 .profile-image {
  display: inline-block;
  width: 80%;
  z-index: 1;
  position: relative;
  padding: 10px;
  border: 2px solid #19a6c7;
}

.snip1515 .profile-image img {
  max-width: 100%;
  height: 260px;
  vertical-align: top;
}

.snip1515 figcaption {
  width: 100%;
  background-color: #F2F2F2;
  color: #000000;
  padding: 125px 25px 25px;
  margin-top: -100px;
  display: inline-block;
}

.snip1515 h3, h4, p {
  margin: 0 0 5px;
}

.snip1515 h3 {
  font-weight: 600;
  font-size: 1.3em;
}

.snip1515 h4 {
  color: #737373;
  font-weight: 400;
  letter-spacing: 2px;
}

.snip1515 p {
  font-size: 0.9em;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ---------------------------------------------- Fin de estilos quienes somos -------------------------------------------------*/
/* nuestros valores quotebox*/
blockquote {
  margin: 0 auto;
  padding: 1em;
  border-left: 5px solid #19a6c7;
}
blockquote:before {
  display: none;
}
blockquote:not(:first-of-type) {
  margin-top: .5em;
}
blockquote q {
  color: #96a2b2;
  font-size: 14pt;
  line-height: 1.4;

}
blockquote h3 {
  color: #737373;
}

blockquote:nth-of-type(even) {
  text-align: right;
  border-left: none;
  border-right: 5px solid #19a6c7;
}

/* fin nuestros valores quotebox*/
/* ---------------------------------------------- Inicio de estilos servicios -------------------------------------------------*/

.servicios h3, h2 {
  color: #19a6c7;
  font-weight: 600;
}

@media (max-width: 768px) {
  .servicios h2 {
    font-size: 23px;
  }
}

.servicios h4 {
  text-decoration: underline #19a6c7; 
}

.servicios ul {
  list-style: none;
}

.servicios i {
  color: #19a6c7;
}

.card {
  border: 0px !important;
}

.card-header {
   border-radius: 5% !important;
   border: 0px;
   background-color: #e9ecef;
}

.card-header a {
  color: #737373;
  font-weight: 600;
  font-size: large;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.card-header:hover {
	background-color: #e9ecefb7;
}
.card-header:active {
	position:relative;
  top:1px;
  background-color: #e9ecef46;
}
/* ---------------------------------------------- Fin de estilos servicios -------------------------------------------------*/

/* =================================================== Nuestra Firma =======================================================*/

.firma .TextWrap {
  float: right;
  margin-left: 25px;
  margin-bottom: 25px;
  width: 21%;
}

@media (max-width: 768px) {
  .firma .TextWrap {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
  width: 37%;
  }
}

@media (max-width: 425px) {
  .TextWrap {
    display: none;
  }
}