/* CSS Document */



@media screen and (max-width: 1000px){
	.container_main{
		flex-direction: column;/*縮小時由列改成欄(橫式改直式)*/
		}
	.main_left{
		max-width: 100%;
		order:2;/*顯示順序*/
		}
	.main_right{
		order:1;/*顯示順序*/
		}
}
@media screen and (max-width: 720px){
		.logo {
	display:flex;
    align-items:center;
    justify-content:center;
}
		.logo p{
	display: none;
		}
}


@media screen and (max-width: 450px){
	.logo img {
	max-width: 90px;
}
