/*Estilo.css*/
@import url(https://fonts.googleapis.com/css?family=Bitter:400,700);
body{
	background: green;
	font-family: 'Helvetica';
	background: url('../img/pattern-controlling.jpg');
}
section{
	background: white;
	padding: 50px;
    margin-bottom: 200; 
}
.triagle{
	position: relative; 
}
.triagle::after {
    content: '';
    background: url('../img/triagle.png');
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: -150;
    left: 0;
    background-size: 100% 150px;
}
.triagleMedio{
    position: relative;
    background: white;
    width: 450px;
    margin-bottom: 100px ;
}
.triagleMedio::after {
    content: '';
    background: url('../img/triagle.png');
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 70px;
    bottom: -70;
    left: 0;
    background-size: 100% 70px;
}
/*header*/
.logoPrincipal{
	margin: 60px auto 40 auto;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;    background-color: white;
}
.cabehead{
	padding-right: 0;
	padding-left: 0;
	background: url('../img/fondo-header.jpg');
	background-position: center;
	background-attachment: fixed;
}
.cabehead .row{
    margin-right: 0;
    margin-left: 0;

}
.barraMenu{
	text-align: center;
	background: #344d90;
}
.barraMenu a{
	text-align: center;
	color: white;
	text-decoration: none;
}
.barraMenu ul li{
	padding-top: 13px;
}
/*nosotros*/
.intro h3{
	font-family: 'bitter';
    font-size: 45px;
    line-height: 60px;
    color: white;
    background: url('../img/pattern-azul.jpg');
    padding: 20px;
    position: relative;
}
.intro h3::after {
    content: '';
    background: url('../img/triagleleft.png');
    background-repeat: no-repeat;
    position: absolute;
    width: 50px;
    top: 0;
    height: 100%;
    left: -50;
    background-size: 50px 100%;
}
@media screen and (max-width:991px) {
    .intro h3{
        font-size: 20px;
        line-height: 20px; 
        text-align: center; 
    }  
}
.nosotros img{
	border-radius: 50%;
    width: 70%;
    max-width: 250px;
    margin: 0 auto;
}
.nosotros .item{
	text-align: center;
}
/*servicios*/
section.servicios {
    display: flex;
    padding: 0;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.servicios .item {
    width: 320px;
}
@media screen and (max-width:1199px) {
    .servicios .item {
        margin: 0 auto;
    }  
}
.servicios h3 {
    background: #1377ff;
    color: white;
    font-size: 25px;
    padding: 40px 0;
    text-align: center;
    position: relative;
}
.servicios .item p {
    padding: 20px;
    font-size: 14px;
    text-align: center;
}
.servicios h3::after {
    content: '';
    background: url('../img/triaglecian.png');
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    top: 106;
    height: 30px;
    left: 0;
    background-size: 100% 20px;
}


/*contacto*/
footer.contacto {
    padding-bottom: 70px;
}
.dividido{
	background: white;
    padding: 20px;
}
footer{
	margin: 0;
	padding: 0;
	padding-left: 15px;
	padding-right: 15px;
}
.dividido.info {
    text-align: center;
}
.dividido.info h4 {
    font-weight: 400;
}
.dividido.info p {
    font-size: 14px;
    color: #3f3f3f;
}
.dividido.info p.bajada {
    padding-top: 20px
}
.dividido.info img.img-responsive{
	margin: 0 auto;
}
.ultimo {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
/*formulario*/
input.form-control {
    background-color: #344d90;
    color: white;
}
.dividido.formulario h4 {
    text-align: center;
}
textarea.form-control {
    background-color: #344d90;
    color: white;
}
.btn-default {
    transition: all 0.2s ease;
    color: white;
    background-color: #303030;
    border-color: #ccc;
}
.btn-default:hover {
    color: white;
    background-color: #1f1f1f;
    border-color: white;
}
.formulario.triagleMedio form.form-horizontal {
    padding: 20px;
}