@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'open sans';
}

.contenedor {
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo {
    color: #0a41b8;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

/* Header */

header {
    width: 100%;
    height: 600px;
    background: #0a41b8;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, hsla(221, 93%, 37%, 0.459), hsla(199, 74%, 65%, 0.664)), url(../imagenes/1005317_10200863563004155_1761832279_n.jpg);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, hsla(226, 89%, 49%, 0.459), hsla(203, 45%, 52%, 0.664)), url(../imagenes/1005317_10200863563004155_1761832279_n.jpg);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

nav{
    text-align: right;
    padding: 30px 50px 0 0;
}

nav > a{
    color:#fff;
    font-weight: 300;
    text-decoration: none;
    margin-right: 10px;
}

nav > a:hover{
    text-decoration: underline;
}

header .textos-header{
	color: white;
    display: flex;
    height: 430px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}


.general {
	display: flex;
}

.general-1 {
	width: 50%;
	padding: 100px 250px 100px 100px;
	background-color: #E1E2E6;
} 

.general-2 {
	background-image: url(Templo\ Masonico.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 50%; 
}

.general-3{
	background-image: url(Pedro DElia.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
    width: 50%;
}

.contenedor-sobre-nosotros{
    display: flex;
    justify-content: space-evenly;
}

.sobre-nosotros .contenido-textos{
    width: 48%;
}
h2 {
	font-size: 55px;
	line-height: 70px;
	color: #323337;
	text-transform: uppercase;
	margin-bottom: 20px;
}

h4 {
	color: #000000;
	text-transform: uppercase;
}

p {
	font-size: 16px;
	color: #414247;
	margin: 25px 0 45px 0;
}

.blog {
	padding: 100px 0;
	text-align: center;
}

.blog-content {
	display: flex;
	justify-content: space-between;
}

.blog-1 {
	padding: 15px 55px;
}

.blog-1 img {
	width: 250px;
	border-radius: 15px;
	margin-bottom: 15px;
}

.blog-1 h3 {
	font-size: 25px;
	color: #323337;
}

.text-light {
	color: blue;
}

.footer {
	padding: 100px 0;
	background-color: #000000;
}

.footer-content {
	display: flex;
	justify-content: space-between;
}

.link h3 {
	font-size: 18px;
	color: #F9FAFC;
	margin-bottom: 15px;
}

.link p {
	font-size: 16px;
	color: #C5C5C5;
	display: block;
	margin-bottom: 15px;
}

@media(max-width:991px) {

	.general {
		flex-direction: column;
	}

	.general-1 {
		width: 100%;
		padding: 30px;
		text-align: center;
	}

	.general-2, .general-3 {
		display: none;
	}

	.blog {
		padding: 30px;
	}

	.blog-content {
		flex-direction: column;
	}

	.blog-1 {
		padding: 0;
	}

	.footer {
		padding: 30px;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

}
