a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

body {
	padding: 0;
	margin: 0;
	overflow: hidden;
	background-color: #1b1b1b;
	font-family: 'Montserrat', sans-serif;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	overflow: hidden;
	transition: .4s all ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading > div {
	width: 50px;
	height: 50px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	border-top: 2px solid transparent;
    -webkit-animation:spin 1s linear infinite;
    -moz-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

#wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	transition: .4s all ease-in-out;
}

body.loaded #wrapper {
	opacity: 1;
}

#logo {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 250px;
	z-index: 10;
	opacity: 0;
	transition: .4s all ease-in-out;
}

body.loaded #logo {
	opacity: 1;
}

#logo img {
	display: block;
}

.bullets {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	z-index: 10;

}

.bullet {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	cursor: pointer;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.15);
	transition: .4s all ease-in-out;
	opacity: 0;
	margin-bottom: 15px;
}

.bullet:last-child {
	margin-bottom: 0;
}

.bullet.active {
	background-color: #d0b98d;
}

body.loaded .bullet {
	opacity: 1;
}

.slice {
	width: calc(100vw / 2);
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
}

.slice:first-child {
	left: 0;
}

.slice:nth-child(even) {
}

.slice:last-child {
	right: 0;
}

.page {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: .6s all ease-in;
	opacity: 0.7;
}

.page:hover,
.page:focus {
	opacity: 1;
	transform: scale(0.98, 0.98);
}

.page-up {
	margin-top: 100vh;
}

.page-down {
	margin-top: -100vh;
}

#wrapper.down .page-up,
#wrapper.down .page-down {
	margin-top: 0;
}

#wrapper.down .slice:nth-child(even) .page-main {
	margin-top: -100vh;
}

#wrapper.down .slice:nth-child(odd) .page-main {
	margin-top: 100vh;
}

.pizza {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pizza-1 {
	background-image: url('../images/bg1.jpg');
	background-position: 100% 50%;
}

.pizza-2 {
	background-image: url('../images/bg2.jpg');
	background-position: 50% 50%;
}

.pizza-3 {
	background-image: url('../images/pizza3.jpg');
	background-position: 0 50%;
}

h2.shop-name {
	font-size: 60px;
    color: white;
	text-shadow: 2px 2px 2px #1b1b1b;
	line-height: 45px;
	text-align: center;
	letter-spacing: -3px;
	margin-bottom: 0;
}

.shop-info {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('../images/background.jpg') no-repeat 0 50%;
	background-size: cover;
}

.shop-info-inside {
	text-align: center;
	max-width: 70%;
}

h2.shop-info-name {
	font-size: 60px;
    color: #28262b;
	line-height: 45px;
	letter-spacing: -3px;
	margin-bottom: 0;
}

h3.shop-info-short {
	font-family: 'Herr Von Muellerhoff', cursive;
	font-size: 55px;
	color: #a98369;
	line-height: 20px;
	letter-spacing: 0;
	margin-bottom: 30px;
}

.shop-info-description {
	font-weight: 400;
	font-size: 14px;
	font-family: "Raleway";
	line-height: 24.99px;
	letter-spacing: 0px;
	color: #565656;
	margin-bottom: 30px;
}

@media screen and (max-width: 1280px) {
	#logo {
		max-width: 120px;
	}
	
	h2.shop-name {
		font-size: 48px;
	}

	.shop-info-inside {
		max-width: 80%;
	}
	
	h2.shop-info-name {
		font-size: 48px;
		line-height: 40px;
	}
	
	h3.shop-info-short {
		font-size: 36px;
		line-height: 14px;
	}
	
	.shop-info-description {
		font-size: 12px;
		line-height: 16px;
		margin-bottom: 15px;
	}

	.pizza-1 {
		background-image: url('../images/tablet1.jpg');
		background-position: 100% 50%;
	}

	.pizza-2 {
		background-image: url('../images/tablet2.jpg');
		background-position: 50% 50%;
	}

	.pizza-3 {
		background-image: url('../images/pizza3h.jpg');
		background-position: 50% 0;
	}

}

@media screen and (orientation: portrait) and (max-width: 767px) {
	body {
		overflow: auto;
	}

	#logo {
		position: absolute;
		top: 30px;
		max-width: 150px;
		z-index: 10;
	}


	.bullets {
		position: absolute;
		top: auto;
		bottom: 20px;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		display: flex;
	}
	
	.bullet {
		margin-bottom: 0;
		margin-right: 10px;
	}
	
	.bullet:last-child {
		margin-right: 0;
	}
		
	.slice {
		height: calc(100% / 2);
		width: 100%;
		left: 0!important;
	}

	.slice:first-child {
		top: 0;
	}

	.slice:nth-child(even) {
		top: 50%;
		transform: translateY(-0%);
	}

	.slice:last-child {
		top: auto;
		bottom: 0;
	}

	.page {
		opacity: 1;
	}

	.pizza-1 {
		background-image: url('../images/chanakTop.jpg');
		background-position: 50% 100%;
	}
	
	.pizza-2 {
		background-image: url('../images/chanakbottom.jpg');
		background-position: 50% 50%;
	}
	
	.pizza-3 {
		background-image: url('../images/pizza3h.jpg');
		background-position: 50% 0;
	}
	
	.page-up {
		margin-top: 0;
		margin-left: 100%;
	}

	.page-down {
		margin-left: -100%;
		margin-top: 0;
	}

	#wrapper.down .page-up,
	#wrapper.down .page-down {
		margin-top: 0;
		margin-left: 0;
	}

	#wrapper.down .slice:nth-child(even) .page-main {
		margin-top: 0;
		margin-left: -100%;
	}

	#wrapper.down .slice:nth-child(odd) .page-main {
		margin-top: 0;
		margin-left: 100%;
	}

	h2.shop-name {
		font-size: 32px;
	}

	.shop-info-inside {
		text-align: center;
		max-width: 100%;
		display: flex;
	}

	.shop-info-texts {
		flex: 0 0 60%;
		max-width: 60%;
		min-height: 1px;
		padding-left: 5px;
		padding-right: 5px;
	}
	
	h2.shop-info-name {
		font-size: 32px;
		line-height: 28px;
	}
	
	h3.shop-info-short {
		font-size: 28px;
		line-height: 10px;
		margin-bottom: 10px;
	}
	
	.shop-info-description {
		font-size: 10px;
		line-height: 14px;
		margin-bottom: 10px;
	}

	.shop-info-image {
		flex: 0 0 40%;
		max-width: 40%;
		padding-left: 5px;
		padding-right: 5px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

}