/*RESET*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*ESTILOS PRICIPALES*/
html, body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7em;
}

a{
    color: #333;
    text-decoration: none;
}

h1, h2, h3{
    padding-bottom: 10px 0;
  }

  p{
    margin: 10px 0;
    color: #615e5e;
    font-weight: 450;
    text-align: justify;
  }

  .pie{
    margin: 10px 0;
    color: #615e5e;
    font-weight: 500;
     text-align: center;   
  }

  .titulos{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
  }
/*UTILIDADES*/
  .container{
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 0 20px;
  }

  .crl{
    clear: both;
  }

  /*PADDING*/

  .py-1{
    padding: 10px 0;
  }

  .py-2{
    padding: 20px 0;
  }

  .py-3{
    padding: 30px 0;
  }

    .btn{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background:#00215E;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    border-radius: 2.5px;
    
  }

  .btn:hover{
    background: #00215E;
    color: #868181;
  }

   /*NAVEGACION*/
.navbar{
    background: #000;
    color: #fff;
    overflow: auto;
}

.navbar a{
    color: #fff;
    font-weight: 600;
}

.navbar h1{
    float: left; 
    padding-top: 20px;
}
.navbar ul{
    list-style: none;
    float: right;
}

.navbar ul li{
    float: left;
}
.navbar ul li a{
    display: block;
    padding: 20px;
    text-align: center;
}

.navbar ul li a:hover{
    background:#00215E;
    color: #000;
    border-radius: 2%;
}

.logoempresa{
    width: 12%;
    height: 15%;
    border-radius: 2%;
    opacity: 0.9;
       
}

/*showcase*/

#showcase{
    background: url('../img//foto7.jpg') no-repeat center center/cover;
    height: 650px;
    
}

#showcase .showcase-content{
    color: #343131;
    text-align: center;
    padding-top: 170px;
}

#showcase .showcase-content h1{
    font-size: 60px;
    line-height: 1.2em;
}

#showcase .showcase-content p{
    padding-bottom: 20px;
    line-height: 1.7em;
}

.lead{
    font-size: 20px;
    color: #343131;
}
.text-primary{
    color:#00215E;
}

#contact-form p{
    color:#00215E;
    font-size: 20px;
}

form .form-group{
    color:#00215E;
    font-size: 13px;
    font-weight: 600;
}


/*HOME*/
#home-info{
    height: 400px;
}

#home-info .info-img{
    float: left;
    width: 50%;
    background: url('../img/imagen2.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100%;
    border-radius: 1%;
}

#home-info .info-content{
    float: right;
    width: 50%;
    height: 100%;
    text-align: justify;
    padding: 50px 30px;
    overflow: hidden;
    color: #4F4A45;
    font-size: 18px;
}

/*FEATURES*/
.box{
    float: left;
    width: 33.3%;
    padding: 50px;
    text-align: center;
    color: #00215E;
    font-weight: 700;
}

.box i{
    margin-bottom: 10px;
}

.redes{
   margin-bottom: 10px;
  text-align: center;
  color: #00215E;
  font-size: 50px;
}

.dir {
    color: #00215E;
    text-align: center;
    font-weight: 600;
}

.servic{
    color: #fff;
}

.bg-gray{
    background: #cfcfcf;
    color: #333;
}

.bg-light{
    background: #E8EFCF;
    color: #333;
}

.bg-primary{
    background: #00215E;
    color: #c8bfbf;
}

/*FOOTER*/

#main-footer{
    text-align: center;
    background: #000;
    color: #fff;
    padding: 20px;
}

/*SOBRE NOSOSTROS*/
#about-info .info-right{
    float: right;
    width: 50%;
    min-height: 100%;
}

#about-info .info-right img{
    display: block;
    margin: auto;
    width: 70%;
    border-radius: 50%;
}

#about-info .info-left{
    float: left;
    width: 50%;
    min-height: 100%;
}

.l-heading{
    font-size: 30px;
    line-height: 6vh;
    text-align: center;
}

/*TESTIMONIALES*/

#testimonials{
    height: 100%;
    background: url(../img/bg-2.jpg) no-repeat center center/cover;
    padding-top: 100px;
}

#testimonials h2{
    color: #00215E;
    text-align: center;
    padding-top: 50px;
    font-size: 35px;

       
}

#testimonials .testimonial{
    padding: 30px;
    margin-bottom: 100px;
    border-radius: 5px;
    opacity: 0.9;
    
}

#testimonials .testimonial img{
    width: 180px;
    float: left;
    margin-right: 30px;
    border-radius: 2%;
}

/*CONTACTO#*/

#contact-form .form-group{
    display: block;
    margin-bottom: 5px;
}

#contact-form label{
    display: block;
    margin-bottom: 5px;
}

#contact-form input, #contact-form textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

#contact-form textarea{
    height: 200px;
}

#contact-form input:focus,
#contact-form textarea:focus{
    outline: none;
    border-color: #00215E;

}