header {
	width:100%; /* Establecemos que el header abarque el 100% del documento */
	overflow:hidden; /* Eliminamos errores de float */
	background:#252932;
	margin-bottom:20px;
	padding-top:20px;
	height:110px;
	z-index:999;!important
}
 
.wrapper {
	width:90%; /* Establecemos que el ancho sera del 90% */
	max-width:1000px; /* Aqui le decimos que el ancho máximo sera de 1000px */
	margin:auto; /* Centramos los elementos */
	overflow:hidden; /* Eliminamos errores de float */
}
 
header .logo {
	float:left;
	
}

header .logo img {
	line-height:200px;
}
 
header .title {
	float:right;
	line-height:200px;
	color:#FFF;
	display:inline-block;
}

/*Redimension*/


.header2 {
	position: fixed;
	height:80px;
}
 
.header2 .logo img {
	width:70%;
}
 
 
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color:#DD137B;
}

a {
    color: #DD137B;
    text-decoration: none;
    background-color: transparent;
    font-weight: bolder;
}
 

@media screen and (max-width: 950px) {
	header .logo {
		width:100%;
		text-align:center;
		line-height:100px;
	}
 
	.header2 {
		height:auto;
		padding-bottom:10px;
	}
 
	.header2 .logo img {
		width:100px;
	}
}