@media screen and (min-width: 600px) {

	footer::before, footer::after{
		background-color: #f8f4f1;
	}

	#breadol{
		width: 80vw;
	    display: flex;
	    align-content: center;
	    list-style: none;
	    position: relative;
	    margin: 0 10vw;
	    z-index: 1;
	    padding-left: .5vw;
	    animation: up 1s backwards;
	    animation-delay: .1s;
	}
	#breadol > li{
	    font-size: 1.2vw;
	    color: #666;
	    line-height: 1vw;
	    display: flex;
	}
	#breadol > li > a{
	    color: #666;
	    margin-right: 2vw;
	    display: block;
	    position: relative;
	    font-weight: bold;
	}
	#breadol > li > a::after{
		content: "";
		display: block;
		width: .2vw;
		height: 1.2vw;
		background-color: #666;
		position: absolute;
		top: -.1vw;
		right: -1.1vw;
	}


	#products-main{
		width: 100vw;
		padding-top: 5vw;
		background-color: #f8f4f1;
	}
	#products-main > h1{
		width: 80vw;
		margin: 0 10vw;
		padding-top: 5vw;
		font-size: 7vw;
		font-weight: normal;
	    animation: up 1s backwards;
	    animation-delay: 0;
	}

	#filter-section{
		width: 80vw;
		display: flex;
		padding: 3vw 10vw;
		background-color: #f8f4f1;
	}
	#filter-section > div{
		width: 12vw;
		height: 3vw;
		background-color: #fff;
		line-height: 3vw;
		text-align: center;
		border-radius: 3vw 0 0 3vw;
		font-size: 1.2vw;
		color: #666;
		position: relative;
		margin-right: 4.5vw;
		cursor: pointer;
		user-select: none;
	    animation: up 1s backwards;
	    animation-delay: .2s;
	}
	#filter-section > div::before{
		content: "";
		width: 3vw;
		height: 3vw;
		background-color: #fff;
		border-radius: 0 3vw 3vw 0;
		position: absolute;
		left: 12.3vw;
		top: 0;
	}
	#filter-section > div::after{
		content: "";
		width: 0;
		height: 0;
		border: solid .8vw transparent;
		border-top: solid .8vw #666;
		position: absolute;
		left: 12.8vw;
		top: 1.2vw;
		transform: scale(.6, 1);
	}

	#choose-section{
		display: flex;
		flex-wrap: wrap;
		width: 80vw;
		padding: 5vw 10vw 2vw 10vw;
		background-color: #f8f4f1;
	}
	#choose-section > a{
		width: 25vw;
		background-color: #f8f4f1;
		margin: 0 1.5vw 1.5vw 0;
		cursor: pointer;
	    animation: up 1s backwards;
	    animation-delay: .6s;
	    position: relative;
	}
	#choose-section > a:nth-child(1){		
	    animation: up 1s backwards;
	    animation-delay: .3s;
	}
	#choose-section > a:nth-child(2){		
	    animation: up 1s backwards;
	    animation-delay: .4s;
	}
	#choose-section > a:nth-child(3){		
	    animation: up 1s backwards;
	    animation-delay: .5s;
	}
	#choose-section > a:hover .choose-bottom{
		transform: translate(0, -.3vw);
	}
	#choose-section > a:hover > picture > img{
		transform: translate(0, .3vw);
	}
	#choose-section > a > picture > img{
		width: 25vw;
		border-radius: 2vw 2vw 0 0;
		display: block;
		transition: all .2s;
	}
	.choose-bottom{
		width: 22vw;
		padding: 1.5vw;
		background-color: #fff;
		margin-top: .6vw;
		border-radius: 0 0 2vw 2vw;
		transition: all .2s;
	}
	.choose-h{
		width: 22vw;
		text-align: left;
		font-size: 2vw;
		font-weight: bold;
		line-height: 2vw;
	}
	.choose-color{
		position: absolute;
		left: 1vw;
		top: 1vw;
		z-index: 1;
	}
	.choose-color > div{
		width: 1.6vw;
		height: 1.6vw;
		border: solid .2vw #fff;
		border-radius: 2vw;
		margin: .25vw;
	}
	.choose-slo{
		font-size: 1.2vw;
		line-height: 1.5vw;
		margin: 1vw 0 0 0;
		color: #666;
		transform: translate(.1vw, 0);
	}
	.choose-price{
		display: flex;
		align-items: center;
		margin: 1vw 0;
	}
	.choose-price-1{
		width: 3.5vw;
		height: 1.8vw;
		line-height: 1.8vw;
		font-size: 1vw;
		text-decoration: line-through;
		background-color: #eee;
		border-radius: 2vw;
		text-align: center;
		margin: 0 1vw;
		padding: 0 1vw;
	}
	.choose-price-2{
		font-size: 2vw;
		font-weight: bold;
		color: #de991f;
	}
	.learn-more-button > div{
		width: 19vw;
	}
}



@media screen and (max-width: 600px) {

	footer::before, footer::after{
		background-color: #f8f4f1;
	}

	#breadol{
		width: 90vw;
	    display: flex;
	    align-content: center;
	    list-style: none;
	    position: relative;
	    margin: 0 5vw;
	    z-index: 1;
	    padding-left: 1vw;
	    animation: up 1s backwards;
	    animation-delay: .1s;
	}
	#breadol > li{
	    font-size: 3.6vw;
	    color: #666;
	    line-height: 3vw;
	    display: flex;
	}
	#breadol > li > a{
	    color: #666;
	    margin-right: 6vw;
	    display: block;
	    position: relative;
	    font-weight: bold;
	}
	#breadol > li > a::after{
		content: "";
		display: block;
		width: .6vw;
		height: 3.6vw;
		background-color: #666;
		position: absolute;
		top: -.3vw;
		right: -3.3vw;		
	}


	#products-main{
		width: 100vw;
		padding-top: 10vw;
		background-color: #f8f4f1;
	}
	#products-main > h1{
		width: 90vw;
		margin: 0 5vw;
		padding-top: 15vw;
		font-size: 15vw;
		font-weight: normal;
	    animation: up 1s backwards;
	    animation-delay: 0;
	}

	#filter-section{
		width: 90vw;
		display: flex;
		padding: 9vw 5vw 3vw 5vw;
		background-color: #f8f4f1;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}
	#filter-section::-webkit-scrollbar{
		display: none;
	}
	#filter-section > div{
		width: 36vw;
		height: 9vw;
		background-color: #fff;
		line-height: 9vw;
		text-align: center;
		border-radius: 9vw 0 0 9vw;
		font-size: 3.6vw;
		color: #666;
		position: relative;
		margin-right: 13.5vw;
		cursor: pointer;
		user-select: none;
	    animation: up 1s backwards;
	    animation-delay: .2s;
	    flex-shrink: 0;
	}
	#filter-section > div:last-child{
		margin-right: 9vw!important;
	}
	#filter-section > div::before{
		content: "";
		width: 9vw;
		height: 9vw;
		background-color: #fff;
		border-radius: 0 9vw 9vw 0;
		position: absolute;
		left: 36.9vw;
		top: 0;
	}
	#filter-section > div::after{
		content: "";
		width: 0;
		height: 0;
		border: solid 2.4vw transparent;
		border-top: solid 2.4vw #666;
		position: absolute;
		left: 38.4vw;
		top: 3.6vw;
		transform: scale(.6, 1);
	}

	#choose-section{
		width: 90vw;
		display: flex;
		flex-direction: column;
		padding: 10vw 5vw 2vw 5vw;
		background-color: #f8f4f1;
	}
	#choose-section > a{
		width: 90vw;
		background-color: #f8f4f1;
		margin: 2.5vw 0;
		cursor: pointer;
	    animation: up 1s backwards;
	    animation-delay: .6s;
	    position: relative;
	}
	#choose-section > a:nth-child(1){		
	    animation: up 1s backwards;
	    animation-delay: .3s;
	}
	#choose-section > a:nth-child(2){		
	    animation: up 1s backwards;
	    animation-delay: .4s;
	}
	#choose-section > a:nth-child(3){		
	    animation: up 1s backwards;
	    animation-delay: .5s;
	}
	#choose-section > a > picture{
		width: 90vw;
		padding: 0;
		margin: 0;
	}
	#choose-section > a > picture > img{
		width: 90vw;
		border-radius: 6vw 6vw 0 0;
		display: block;
		transition: all .2s;
	}
	.choose-bottom{
		width: 80vw;
		padding: 5vw;
		background-color: #fff;
		margin-top: 2vw;
		border-radius: 0 0 6vw 6vw;
		transition: all .2s;
	}
	.choose-h{
		width: 80vw;
		font-size: 8vw;
		font-weight: bold;
		line-height: 8vw;
	}
	.choose-color{
		position: absolute;
		left: 3vw;
		top: 3vw;
		z-index: 1;
	}
	.choose-color > div{
		width: 6vw;
		height: 6vw;
		border: solid .6vw #fff;
		border-radius: 6vw;
		margin: 1vw;
	}
	.choose-slo{
		font-size: 4.5vw;
		line-height: 5.5vw;
		margin: 3vw 0 0 0;
		color: #666;
		transform: translate(.3vw, 0);
	}
	.choose-price{
		display: flex;
		align-items: center;
		margin: 3vw 0;
	}
	.choose-price-1{
		width: 28vw;
		height: 7.2vw;
		line-height: 7.2vw;
		font-size: 4vw;
		text-decoration: line-through;
		background-color: #eee;
		border-radius: 8vw;
		text-align: center;
		margin: 0 4vw;
	}
	.choose-price-2{
		font-size: 8vw;
		font-weight: bold;
		color: #de991f;
	}
	.learn-more-button > div{
		width: 70vw;
	}
}




