section.voice{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

section.voice .text{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 40%;
	margin-right: 2rem;
}

section.voice .text .catch{
	position: relative;
	display: block;
	font-size: 1.5rem;
	padding: 3rem;
	margin-bottom: 2rem;
}

section.voice .text .catch:before{
	content:"";
	background: url(../imgs/shared/brackets_top_green.png) no-repeat 0 0;
	width: 55px;
	height: 55px;
	position: absolute;
	top:0;
	left: 0;
}

section.voice .text .catch:after{
	content:"";
	background: url(../imgs/shared/brackets_bottom_green.png) no-repeat 0 0;
	width: 55px;
	height: 55px;
	position: absolute;
	bottom: 0;
	right: 0;
}



section.voice .text .profile span{
	font-size: 1.4rem;
	display: block;
	
}


@media (max-width: 673px) {
	section.voice{
		flex-wrap: wrap;
	}
	section.voice .text{
		width: 100%;
		margin-right: 0;
	}
	section.voice .text .catch{
		font-size: 1.2rem;
		padding: 1.5rem;
		margin-bottom: 1rem;
	}
	section.voice .text p{
		margin-top: 0;
	}
	section.voice .text .profile{
		text-align: center;
	}
	section.voice .text .profile span{
		font-size: 1.2rem;
	}
