article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
*,
*::after,
*::before {
	box-sizing: border-box;
}



body {


	--details-bg-up: #fff;
	--details-bg-down: #f5f0ef;

	min-height: 100vh;


	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}



/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
}

.js .loading::after {
	background: url(../image/ceil4.gif) no-repeat 50% 50%;
	background-size: 50%;
	pointer-events: none;

	opacity: 0.1;
	animation: loaderAnim 1s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
	}
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

main {
	position: relative;
	width: 100%;
}
.content {
	position: relative;
	display: block;
}


.details__magnifier{
	display: none;
}

.grid {

	position: relative;


}


.product {

	padding-top: 2em;
text-align: center;
	cursor: pointer;
}

.product__bg {
	height: 18em;

	position: relative;
}

.product__img {

	margin: 0 auto;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	pointer-events: none;
	transform: translate3d(-50%,0,0);
	width:80%;
}

.product__title {
	position: relative;
	margin: 0.5em 0 0;
	font-size: 1.75em;


	font-weight: 700;
}

.product__subtitle {
	position: relative;
margin: 0;
color: black;
font-size: 15px;
line-height: 36px;

}



.product__description,
.product__price {
	display: none;
}

.details {
	position: fixed;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	padding: 40vh 0 10vh 10vw;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	pointer-events: none;
}

.details--open {
	pointer-events: auto;
}

.details > * {
	position: relative;
	opacity: 0;
}

.details__bg {
	width: 100%;
	position: fixed;
	left: 0;
}

.details__bg--up {
	top: 0;
	height: 100vh;
	background: var(--details-bg-up);
}

.details__bg--down {
	top: 40vh;
	height: 60vh;
	background: var(--details-bg-down);
}

.details__img {
    position: absolute;
    top: 10vh;
    right: 5vw;
    height: 63vh;
}

.details__bg,
.details__img {
	transform-origin: 0 0;
}

.details__title {
	margin: -1.5em 0 0.1em;
	font-size:42px;


	font-weight: 700;
}

.details__subtitle {
	text-transform: uppercase;
	margin: 1.75em 0 1em 0;
	letter-spacing: 0.115em;
	font-size: 1.75em;

}

.details__description {
	line-height: 1.5;
	font-weight: bold;
	max-width: 50%;
	margin: 0em 0 0 0;

}

.details__price {
	font-size: 3em;
	font-weight: bold;
}

.details__addtocart {
	display: none;
}



.details__close {
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	background: none;
	margin: 2em;
	cursor: pointer;
	font-size: 0.85em;

}






.details__deco {
	display: none;
}

/* Related demos */



@media screen and (max-width: 600px) {
	.product {
    padding-top:0px;;
    text-align: center;
    cursor: pointer;

		margin: 7%;
}
.product__img {
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    pointer-events: none;
    transform: translate3d(-50%,0,0);
    width: 80%;
}
.product__title {
    position: relative;
    margin: -4.5em 0 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
padding-top: 20px;
}

.product__subtitle {
	position: relative;
margin: 0;
color: black;
font-size: 15px;
line-height: 36px;


}
.product__bg {
    height: 17em;
		text-align: center;
	}


	.details {
		padding: 30vh 0 5vh 10vw;
	}
	.details__bg--down {
		top: 25%;
		height: 100%;
	}
	.details__title {
		font-size: 2em;
		text-align: center;
		width:89%;
		margin-top: 16%;
	}
	.details__subtitle {
		font-size: 1em;
		width:90%;
		text-align: center;
	}
	.details__price {
		font-size: 1.5em;
	}
	.details__description {
		max-width: 90%;
		font-size: 0.85em;
		margin: 0 0 0 0;
		text-align: justify;
	}
	.details__deco {
		display: none;
	}
	.details__img {

						top: 3%;
				display: block;
				width: 50%;
				height: auto;
				vertical-align: middle;
				align-content: center;
				left: 25%;
				right:0px;


					}
					.dummy-menu {
		margin: 1.75em 1.5em 0 0;
	}

}
