@charset "UTF-8";
/* CSS Document */


.page-template-temp_voluntarios .page__header h1{
	font-size: 8vw;
	line-height: 8.5vw;

}
.page-template-temp_voluntarios .page__header{
	margin-top: 60px;
}
.volunteers_grid{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #f9d459;
}
.volunteers_grid .item{
	position: relative;
	width: 50%;
	padding: 10vw 5vw;
	display: flex;
	justify-content: center;
	text-align: center;
	background-color: #4B6DB5;
	transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
}

.volunteers_grid .item .paper_shape{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/elements/paper_shape_01.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.volunteers_grid .item .title{
	font-size: 3.6vw;
	line-height: 3.7vw;
	color: #161A32;
	transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
}
.volunteers_grid .item .number{
	position: absolute;
	left: 5vw;
	top: 5vw;
	font-size: 1.4vw;
	color: #FFD659;
	z-index: 2;
	padding-left: 0.7vw;
	padding-top: 0.9vw;
}
.volunteers_grid .item .number span{
	position: relative;
	z-index: 1;
}
.volunteers_grid .item .number:after{
	content: '';
	position: absolute;
	width: 3vw;
	height: 3vw;
	background-color: #161A32;
	transform: rotate(45deg);
	left: 0;
	top: 0;
	z-index: 0;
	transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
}

.volunteers_grid .item:hover{
	background-color: #161A32;
}
.volunteers_grid .item:hover .title{
	color: #4B6DB5;
}
.volunteers_grid .item:hover .number:after{
	background-color: #4B6DB5;
}

@media(max-width:992px){
	.volunteers_grid .item{
		width: 100%;
	}
}
@media(max-width:767px){
	.page__main {
		padding: 0;
		padding-top: 70px;
	}
	.page-template-temp_voluntarios .page__header {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.volunteers_grid{
		background-color: #FFD659;
		padding: 5vh 0;
	}
	.volunteers_grid .item .title {
		font-size: 4.6vw;
		line-height: 4.7vw;
	}
	.volunteers_grid .item .number {
		left: 8vw;
		top: 6vw;
		font-size: 3.4vw;
		padding-left: 1.3vw;
		padding-top: 1.3vw;
	}
	.volunteers_grid .item .number:after {
		width: 6vw;
		height: 6vw;
	}
}
