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

.sec-footer{
	width: 100vw;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	padding: 3em 0;
}
.container-footer{
	width: 90%;
	display: flex;
	justify-content: space-between;
}
.footer-left{
	width: 70%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.footer-right{
	width: 30%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.footer-txt{
	font-size: 12px;
	line-height: 200%;
}
.footer-button{
	max-width: 300px;
	margin: 5px 0;
}

@media only screen and (max-width: 1280px){
	.footer-left{
		width: 60%;
	}
	.footer-right{
		width: 40%;
	}
}
@media only screen and (max-width: 800px){
	.container-footer{
		width: 85%;
		flex-direction: column;
	}
	.footer-left{
		margin-bottom: 30px;
	}
	.footer-left, .footer-right{
		width: 100%;
	}
}