@charset "UTF-8";

@font-face{
	font-family: bebasNeueBook;
	src:url(../fonts/BebasNeueBook.otf);
}

@font-face{
	font-family: bebasNeue;
	src:url(../fonts/BebasNeue.otf);
}

@font-face{
	font-family: helveticaNeue;
	src:url(../fonts/HelveticaNeue.otf);
}

#section03Color{
	background-color: #ffc200;
}

.prensaContentBackground{
	width: 100%;
	height: auto;
	margin-top: 80px;
}

.prensaContent{
	width: 800px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.prensaTitleContainer{
	width: 100%;
	height: auto;
	text-align: center;
	margin-top: 50px;
}

.prensaTitlePart01{
	width: auto;
	height: auto;
	display: inline-block;
	margin-right: 10px;
}

.prensaTitlePart01 h1{
	color: #ffc200;
	padding: 0px;
	margin: 0px;
	margin-bottom: 10px;
}

.prensaTitlePart02{
	width: auto;
	height: auto;
	display: inline-block;
}

.prensaTitlePart02 h1{
	color:#123163;
	padding: 0px;
	margin: 0px;
	margin-bottom: 10px;
}

.prensaContent p{
	padding: 0px;
	margin: 0px;
}

.prensaButtonContainer{
	width: 100%;
	height: auto;
	margin-top: 20px;
}

.prensaButton{
	width: 480px;
	height: 44px;
	background-color: #ffc200;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

.prensaButton:hover{
	background-color: #ffe000;
	-webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

.prensaButtonText{
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

.prensaButtonText h1{
	color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	padding-top: 8px;
}

.prensaButtonIcon{
	display: inline-block;
}

.prensaButtonIcon img{
	width: 28px;
	height: 28px;
	padding-top: 7px;
}


/* Responsive Breakpoints */
/* Breakpoint 01 */ 
@media (max-width: 820px){
	
	.prensaContentBackground{
		margin-top: 40px;
	}
	
	.prensaContent{
		width: calc(100% - 40px);
		margin-left: 20px;
		margin-right: 20px;
	}
}

/* Breakpoint 02 */ 
@media (max-width: 500px){
	
	.prensaButton{
		width: calc(100% - 10px);
		margin-left: 5px;
		margin-right: 5px;
		margin-top: 34px;

	}
	
	.prensaButtonText{
		margin-right: 2px;
	}

	.prensaButtonText h1{
		font-size: 16px;
		padding-top: 14px;
	}
	
	.prensaButtonIcon img{
		width: 18px;
		height: 18px;
		padding-top: 12px;
	}
}

/* Breakpoint 03 */ 
@media (max-width: 350px){
	
	.prensaButton{
		width: calc(100% - 4px);
		margin-left: 2px;
		margin-right: 2px;

	}

	.prensaButtonText h1{
		font-size: 14px;
		padding-top: 14px;
	}
}


