@charset "utf-8";

.header-home {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
	width: 100%;
	height: auto;
	margin-bottom: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #c70a17;
}
.header-home h1{
	font-size: 130%;
}	
.box-header-home-1 {
	width: 100%;
	height: auto;
	text-align: center;
}
#desktop-header img {
	width: 100%;
	height: auto;
}
#mobile-header img {
	display: none;
}
.box-header-home-2 {
	background-color: #C70A17;
	width: 100%;
	height: 35px;
	text-align: center;
	padding-top: 10px;
}

.box-header-home-2 p{
	font-size: 100%;
	color: #fff;
}

.box-header-home-3{
	width: 100%;
	height: auto;
	padding-left: 50px;
	padding-right: 50px;
}

.grid-container-info {
	width: 100%;
	max-width: 90%;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 150px;
	grid-template-areas:
	"inf-item1 inf-item2 inf-item2";
}

.grid-item-info {
	height: auto;
	display: flex;
	justify-content: center;
	border-radius: 5px;
}

.grid-item-info img {
	width: 35%;
	height: auto;
	border-radius: 5px;
}

.grid-item-info a:link{
	color: #000;
}

.grid-item-info a:hover{
	color: #c70a17;
}

#inf-item1 {
	height: auto;
	font-size: 100%;
	grid-area: inf-item1;
	flex-direction: column;
	text-align: left;
	padding-left: 30px;
	padding-bottom: 10px;
}

#inf-item2 {
	height: auto;
	font-size: 100%;
	grid-area: inf-item2;
	flex-direction: column;
	text-align: right;
	padding-right: 30px;
}

@media only screen and (max-width: 481px){

.header-home {
	display: flex;
	width: auto;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	text-align: left;
	color: #c70a17;
	flex-wrap: wrap;
	justify-content: center;
	align-items: left;
}	
.header-home h1{
	font-size: 130%;
	}
.box-header-home-1 {
	width: 100%;
	height: auto;
	text-align: center;
}
#desktop-header img {
	display: none;
}
#mobile-header img {
	width: 100%;
	height: auto;
	display: initial;
}
.box-header-home-2 {
	display: none;
}
.grid-container-info {
	width: 100%;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	grid-template-areas:
	"inf-item1" "inf-item2";
}

#inf-item1 {
	width: auto;
	max-width: calc(90% - 10px);
	height: auto;
	margin-top: 0;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
}

#inf-item2 {
	width: auto;
	max-width: calc(90% - 10px);
	height: auto;
	margin-top: 0;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
}
}