body {
	background-color: rgb(245, 245, 245);	
    font-family: "Poppins", sans-serif;   
}
#masthead{
	padding-top: 200px;
	padding-bottom: 200px; 
	text-align: center;
	background-image: url("/assets/img/artes.jpg");
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center center;
	background-size: cover;		
	margin-bottom: 50px;
	position: relative;
	z-index: -1;	
}

.banner-masthead {
	background-color: white;
	position: relative;
	margin: 0 auto;
	max-width: 1400px;
	bottom: -15rem;
	padding: 20px;
	border-radius: 5px;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
	color: #004d0b;
	width: 300px;	 
}  

#masthead .masthead-heading {
    font-size: 25px; 
    font-weight: 700;
}

@media (min-width: 768px) {
	.banner-masthead {width: 300px;}  

	.masthead .masthead-heading {font-size: 80%;}	
}
/*---------------------------------------------------------------------------------------*/
/* PENTAGONO
/*---------------------------------------------------------------------------------------*/

#title{
	margin-top: 2rem;
	margin-bottom: 11rem;
}

#title > h2 {
    position: absolute;
    top: 23px; 
    left: 40%; 
    transform: translateX(-50%); 
    z-index: 2; 
    text-align: center; 
}

.pentagon-right{
    position: absolute;  
    width: 350px; 
    height: 80px; 
    background-color: black; 
    clip-path: polygon(0% 0%, 75% 0%, 80% 50%, 75% 100%, 0% 100%);
    z-index: 1; 
}

.pentagon-shadow {
    position: absolute;  
    width: 350px; 
    height: 80px; 
    background-color: rgb(183, 167, 78); 
    clip-path: polygon(0% 0%, 75% 0%, 80% 50%, 75% 100%, 0% 100%);
    z-index: 0;
    top: 20px;     
}

@media (min-width: 768px) {	
	.pentagon-right{  
		width: 600px; 
		height: 100px; 
	}
	
	.pentagon-shadow {
		width: 600px; 
		height: 100px; 	
	}

	#title > h2 {left: 20%;}
}

/*---------------------------------------------------------------------------------------*/
/* INFORMES
/*---------------------------------------------------------------------------------------*/

#informes{margin-bottom: 6rem;}

.brutalist-card__actions {
	margin-top: 1rem;
	
}

.brutalist-card__button {
	display: flex; 
    justify-content: center; 
    align-items: center;
	width: 100%;
	height: 70px; 
	padding: 0.75rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	border: 3px solid #454545;
	background-color: #fff;
	color: #454545;
	position: relative;
	transition: all 0.2s ease;
	box-shadow: 5px 5px 0 #454545;
	overflow: hidden;
	text-decoration: none;
	margin-bottom: 1rem;
	align-items: center;
}
  
.brutalist-card__button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: all 0.6s;
}
  
.brutalist-card__button:hover::before {
	left: 100%;
}
  
.brutalist-card__button:hover {
	transform: translate(-2px, -2px);
	box-shadow: 7px 7px 0 #000;
}

.brutalist-card__button--mark:hover {
	background-color: rgb(81, 171, 81);
	border-color: rgb(81, 171, 81);
	color: #fff;
	box-shadow: 7px 7px 0 green;
}

.brutalist-card__button:active {
	transform: translate(5px, 5px);
	box-shadow: none;
} 


