@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
	box-sizing: border-box;
}
img {
	display: block;
	width: 100%; /*max-width: 100%;*/
}
body {
	margin:0;
	font-family: 'Open Sans', sans-serif;
	display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f7f7f7;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	letter-spacing: 1.5px;
}

.contenedor {
	margin: auto;
	width: 98%;
}

.tamano_img {
	margin-bottom: 30px;
    /*width: 25% !important;
    height: 50% !important;*/
}

.img_redonda {
	/* cambia estos dos valores para definir el tamaño de tu círculo */
    height: 250px;
    width: 250px;
    /* los siguientes valores son independientes del tamaño del círculo */
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
    background-size: 100% auto;

    margin: auto;
    filter: brightness(1.1);
    mix-blend-mode: multiply;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}
.row:before {
    display: table;
    content: " ";
}

/*------------------------------ ESTILOS DEL HEADER ------------------------------*/
.header {
	height: 120px;
}

.header .contenedor {
	display: flex;
	justify-content: space-between; /*Para poner el logo menu y el titulo uno a cada extremo*/
}

.logo, .icon-menu {
	width: 300px;
}

.icon-menu {
	margin-top: 35px;
	display: block;
	width: 40px;
	height: 40px;
	font-size: 30px;
	background: #768FA5;
	color: #fff; /* black; poner el de arriba (.logo, .icon-menu) y borrar este*/
	text-align: center;
	line-height: 45px;
	border-radius: 5px;
	margin-left: auto; /*Para que se ponga en la esquina el logo menu*/
	cursor: pointer; /*Parezca que es un botón*/
}

/*------------------------------ ESTILOS DEL MENU ------------------------------*/
.nav {
	position: absolute;
	top: 60px;
	left: -100%; /*Para que se vaya a la izquierda*/
	width: 100%;
	transition: all 0.4s;
}
.menu {
	list-style: none;
	padding: 0;
	margin: 50;
}
.menu__link {
	display: block;
	padding: 15px;
	background: #fff;
	text-decoration: none;
	color: #768FA5;
}
.menu__link:hover, .select { /* Cuando se pasa el mouse por encima */
	background: #768FA5;
	color: #fff;
}

.mostrar {
	left:0;
}


/*------------------------------ ESTILOS DEL BANNER ------------------------------*/
.banner {
	position: relative;
	z-index: -1000;
	margin-bottom: 20px;
	margin-top: 40px;
}

.banner .contenedor {
	position: absolute;
	top:50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%); /* Para centrarlo */
	width: 100%;
	color: black;
	text-align: center;
}


/*------------------------------ ESTILOS DEL FOOTER ------------------------------*/
.footer {
	background: #333;
	color: #fff;
	padding: 10px;
	text-align: center;
    flex: 0 0 auto;
}

.footer .social [class^="icon-"] { /*Todos los clases que comiencen con icon- dentro de social y a la vez dentro de footer */
	display: inline-block;
	color: #fff;
	text-decoration: none;
	font-size: 30px;
	padding: 10px;
}

/*------------------------------ ESTILOS RESPONSIVE ------------------------------*/
@media(min-width: 507px) { /*480 Movil Min-width: El ancho mínimo del área de visualización, como una ventana del navegador*/
	.logo {
		font-size: 40px;
	}
	.banner__titulo {
		font-size: 30px;
		margin: 5px 0;
	}
	.banner__txt {
		display: block;
		font-size: 16px;
		margin: 7px 0;
	}
	.col-md-4 {
	    width: 50%;
	}
	.col-sm-6 {
		float: left;
		position: relative;
    	min-height: 1px;
    	padding-right: 15px;
    	padding-left: 15px;
    	margin-bottom: 30px;
	}
	
}


@media(min-width: 768px) { /*Tablet*/
	.banner__titulo {
		font-size: 50px;
	}
	.col-md-4 {
	    width: 33.33333333%;
	}
	.col-sm-6 {
		float: left;
		position: relative;
    	min-height: 1px;
    	padding-right: 15px;
    	padding-left: 15px;
    	margin-bottom: 30px;
	}
	
}

@media(min-width: 1024px) { /*Escritorio*/
	.contenedor { /* Todo ajustado a ese tamaño*/
		width: 1000px;
	}
	.nav {
		position: static;
		width:auto;
	}
	.menu {
		margin-top: 30px;
		display: flex;
	}
	.menu__link {
		background: none;
		font-size: 20px;
	}
	.select {
		background: #768FA5;
		color: #fff;
	}
	.icon-menu {
		display:none;
	}
	.banner__titulo {
		font-size: 60px;
	}
	.banner__txt {
		font-size: 30px;
	}
	.col-md-4 {
	    width: 33.33333333%;
	}
	.col-sm-6 {
		float: left;
		position: relative;
    	min-height: 1px;
    	padding-right: 15px;
    	padding-left: 15px;
    	margin-bottom: 30px;
	}

	
}

@media(min-width: 1280px) {
	.contenedor { /* Todo ajustado a ese tamaño*/
		width: 1200px;
	}
	.logo {
		font-size: 50px;
	}
	.banner .contenedor {
		top: 40%;
	}

	.col-md-4 {
	    width: 33.33333333%;
	}

	.col-sm-6 {
		float: left;
		position: relative;
    	min-height: 1px;
    	padding-right: 15px;
    	padding-left: 15px;
    	margin-bottom: 30px;
	}


	

}