@import url('https://fonts.googleapis.com/css?family=Muli:200,300,400,600');

* {
	padding:0;
	margin: 0;
}
body, html, section{
	width: 100%;
	height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

a{
	font-family: 'Muli', Helvetica, Arial;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 16px;
	text-decoration: none;
}
h2{
	font-family: 'Muli', Helvetica, Arial;
	font-size: 28px;
	font-weight: 200;
	color: #757575;
}

main {
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

main .coluna{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	border-radius: 8px;
	padding: 30px;
	margin-left: 20px;
	margin-right: 20px;
	height: 60vh;
	width: 25vw;

	-webkit-box-shadow: 0px 9px 36px -4px rgba(23,26,63,0.3);
	-moz-box-shadow: 0px 9px 36px -4px rgba(23,26,63,0.3);
	box-shadow: 0px 9px 36px -4px rgba(23,26,63,0.3);
}

main .coluna div > img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

main .col_01, main .col_02{
	text-align: center;
}

.primary_btn{
	display: table;
	margin: 0 auto;
	margin-top: 26px;
	padding: 0 50px;
	height: 46px;
	line-height: 46px;
	color: #fff;
	border-radius: 50px;

	-webkit-transition: all 0.2s cubic-bezier(0.465, 0.183, 0.153, 0.946);
	-moz-transition: all 0.2s cubic-bezier(0.465, 0.183, 0.153, 0.946);
	-ms-transition: all 0.2s cubic-bezier(0.465, 0.183, 0.153, 0.946);
	-o-transition: all 0.2s cubic-bezier(0.465, 0.183, 0.153, 0.946);
	transition: all 0.2s cubic-bezier(0.465, 0.183, 0.153, 0.946);
}

.primary_btn.btn_bento{
	background-color: #683C92;
	border: 2px solid #683C92;
}
.primary_btn.btn_bento:hover{
	background-color: #fff;
	border: 2px solid #683C92;
	color: #683C92;
}


.primary_btn.btn_caxias{
	background-color: #5C6AFF;
	border: 2px solid #5C6AFF;
}
.primary_btn.btn_caxias:hover{
	background-color: #fff;
	border: 2px solid #5C6AFF;
	color: #5C6AFF;
}

@media (max-width: 860px) {
	main .coluna{
		width: 30vw;
	}

}


@media (max-width: 767px) {
	main .coluna{
		width: 34vw;
		margin-left: 16px;
		margin-right: 16px;
	}
	h2{
		font-size: 25px;
	}

}

@media (max-width: 575px) {
	h2{
	font-size: 20px;
	font-weight: 400;
}
main {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 40px;
}

	main .coluna{
		width: 70vw;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 20px;
	}

main .coluna div:nth-child(2){
	margin-top: 30px;
}
.primary_btn{
	display: table;
	margin: 0 auto;
	margin-top: 22px;
	padding: 0 40px;
	height: 40px;
	line-height: 40px;
}
a{
	letter-spacing: 0.8px;
	font-size: 13px;
	text-decoration: none;
}

}

