body{
	background-color: rgb(253, 251, 245);
	padding-top: 30vw;
}

h2{
	text-align: center;
	font-size: calc(20pt + 1.8vw);
	font-weight: bold;
}

p{
	text-align: justify;
	font-size: calc(11pt + 1.1vw);
	width: 80vw;
	max-width: 960px;
	margin: 3vw auto 2vw auto;
}

body > p > br{
	display: none;
}

body > p{
	text-indent: 1em;
}

#topNav{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
}

#topNav > li{
	width: calc(50% - 40px);
	max-width: 200px;
	position: relative;
	margin: 0 20px;
}

#topNav > li > a > div{
	width: 100%;
	height: 20px;
	margin: 20px auto;
	text-align: center;
	font-size: calc(8pt + 1.6vw);
	white-space: pre;
}

#topNav > li > a > img:nth-of-type(1){
	width: 80%;
	margin: 10px auto;
	display: block;
}

#topNav > li > a > img:nth-of-type(2){
	position: absolute;
	left: 0;
	top: 50px;
	width: 20%;
	display: block;
}

hr{
	width: 20%;
	margin: 5vw auto;
	background-color: rgba(187, 187, 187, 0.73);
	border: 0;
	height: 1px;
}

section{
	width: 100%;
	text-align: center;
}

section > h3{
	font-size: calc(18pt + 1.6vw);
}

section > div{
	width: 100%;
}

section > div > div:first-child{
	width: 70vw;
	height: 105vw;
	margin: 20px auto;
	margin-bottom: 70px;
}

section > div > div > div.slick-slider{
	width: 100%;
	height: 100%;
}

div.slick-slider div{
	width: 100%;
	height: 100%;
}

div.slick-slider div.slick-slide{
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

div.slick-slider .slick-dots{
	bottom: -35px;
}

.slick-prev:before, .slick-next:before{
	display: none;
}

.flexRight{
	font-size: calc(12pt + 1.2vw);
}

.flexRight > ul{
	width: 90%;
	margin: 20px auto;
	list-style: none;
}

.flexRight > ul > li{
	display: flex;
	justify-content: space-between;
	height: 55vw;
}

.flexRight > ul > li > div:first-child{
	width: 45vw;
	height: 45vw;
	margin-right: 5vw;
}

.flexRight > ul > li > div:first-child div{
	width: 100%;
	height: 100%;
	cursor: pointer;
	background-size: 200%;
	background-position: top center;	
}

.flexRight > ul > li > div:nth-child(2){
	width: 40vw;
	height: 42vw;
	padding-top: 3vw;
}

.flexRight > ul > li > div:nth-child(2) > p{
	margin-bottom: 2vw;
	font-size: calc(12pt + 1.2vw);
	text-align: left;
	width: 100%;
}

.flexRight > ul > li > div:nth-child(2) > select{
	border-radius: 2vw;
	border: 1px solid #191919;
}

#instantCart{
	background-color: rgba(255, 168, 178, 0.9);
	position: fixed;
	width: 100vw;
	bottom: 0;
	left: 0;
	transition: bottom 400ms ease-in-out;
}

#instantCart > div{
	width: 90vw;
	padding: 2vw 5vw;
}

#instantCart > div:nth-child(1){
	border-bottom: 1px solid white;
	font-size: calc(10pt + 1vw);
	font-weight: bold;
	cursor: pointer;
	color: black;
}

#instantCart > div:nth-child(1) > img{
	width: calc(14pt + 1.4vw);
}

#instantCart > div:nth-child(2){
	line-height: calc(11pt + 1.1vw);
	vertical-align: text-top;
	text-align: center;
}

#instantCart > div:nth-child(2), #instantCart > div > span{
	font-size: calc(11pt + 1.1vw);
	font-weight: bold;
}

#instantCart > div:nth-child(2) > a > img{
	width: 10vw;
	vertical-align: middle;
	margin-left: 2vw;
}

#instantCart > div:nth-child(2) > div:first-of-type{
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
}

#instantCart > div > span{
	display: inline-block;
	background-color: white;
	padding: 0 4vw 1.3vw;
	border-radius: 2vw;
}

#instantCart > div > p{
	font-size: calc(9pt + 0.9vw);
	margin: 5px 0;
}

#instantCart > div > button{
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 0;
}

.modal > div{
	margin-top: 10vh;
	height: 75vh;
	background-size: cover;
}

@media screen and (min-width: 769px){
	body{
		padding-top: 10vw;
	}
	
	h2{
		font-size: 32pt;
	}
	
	p{
		font-size: 18pt;
    text-align: center;
	}
	
	body > p > br{
		display: block;
	}
	
	section{
		position: relative;
		margin-bottom: 5vw;
	}
	
	section:not(:last-child):after{
		content:"";
		position: absolute;
		height: 1px;
		width: 50%;
		background-color: #191919;
		left: 25%;
		margin-bottom: 5vw;
	}
	
	section > div {
		display: flex;
    justify-content: space-between;
    width: 80vw;
		max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
		margin-bottom: 10px;
	}
	
	section > div > div:first-child{
		background-color: white;
    padding: 1.5vw;
    margin-left: 0;
		width: calc(60% - 3vw);
		margin-top: 95px;
		margin-bottom: 100px;
		position: relative;
	}
	
	section > div > div > div > .slick-dots{
		width: calc(100% - 3vw);
		padding: 0 1.5vw;
	}
	
	div.slick-slider .slick-dots{
		bottom: -4vw;
	}
	
	section > h3{
		font-size: 28pt;
    margin-bottom: 50px;
	}
	
	.flexRight{
		width: 33%;
		font-size: 20pt;
		padding-top: 30px;
	}
	
	.flexRight > ul{
		margin-top: 35px;
		width: 100%;
	}
	
	.flexRight > ul > li{
		height: auto;
		margin-bottom: 3.5vw;
	}
	
	.flexRight > ul > li > div:first-child{
		width: 40%;
    margin-right: 10%;
	}
	
	.flexRight > ul > li > div:nth-child(2){
		width: 50%;
		height: auto;
    padding-top: 0;
    text-align: left;
	}
	
	.flexRight > ul > li > div:nth-child(2) > p{
		font-size: 15pt;
    margin-top: 0;
    margin-bottom: 20px;
	}
	
	.flexRight > ul > li > div:nth-child(2) > select{
		font-size: 15pt;
    border-radius: 1vw;
    padding: 0 3em 0 1em;
	}
	
	#instantCart{
		bottom: 50px !important;
    width: 301px;
    left: auto;
    display: flex;
		transition: right 400ms ease-in-out;
	}
	
	#instantCart > div:nth-child(1) {
		width: 60px;
    padding: 10px;
    border-right: 1px solid white;
    border-bottom: none;
    color: transparent;
	}
	
	#instantCart > div:nth-child(1) > img{
		width: 60px;
    display: block;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
	}
	
	#instantCart > div:nth-child(2){
		width: 180px;
    padding: 20px;
    font-size: 14pt;
    font-weight: normal;
		text-align: left;
	}
	
	#instantCart > div > span{
		font-size: 14pt;
    font-weight: normal;
    padding: 5px 10px;
    border-radius: 10px;
    width: 110px;
    text-align: center;
		margin-bottom: 10px;
	}
	
	#instantCart > div > span:nth-of-type(2){
		margin-left: 4px;
	}
	
	#instantCart > div:nth-child(2) > a{
		margin-left: calc(100% - 80px);
	}
	
	#instantCart > div:nth-child(2) > a > img{
		width: 80px;
		margin-left: auto;
	}
	
	#instantCart > div:nth-child(2) > div:first-of-type{
		display: none;
	}
	
	#instantCart > div > p{
		font-size: 12pt;
    width: 100%;
    text-align: left;
    text-indent: -0.66em;
    margin-left: 0.66em;
		line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 10px;
	}

}