:root {
	--yellow: #f1eb9c;
	--dark-yellow: #c0ba5f;
	--pink: #d59dad;
	--green: #cbded7;
}
body {
	font-weight: 400;
	font-family: 'Barlow Condensed', sans-serif;
	background-color: transparent;
	max-width: 100vw;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* HEADER DESKTOP */
a {
	text-decoration: none;
	color: white;
}
.menu {
	font-size: 1.4em;
}
.btn-list-item {
	font-size: 1em;
}
p {
	margin: 1em 0;
}
ul {
	list-style: none;
}
.btn-order {
	background: #d59dad;
	padding: 1em 1.8em;
	outline: none;
	border: 2px solid white;
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 15px;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
	margin-right: 2em;
	transition: 0.3s;
}
.btn-order:hover {
	background-color: #f1eb9c;
	color: black;
	border: 2px solid #d59dad;
}
.container {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 2.5em;
}
#main-page {
	display: flex;
	align-items: center;
	justify-content: center;
}
.img-landing {
	text-align: center;
}
.img-landing img {
	max-width: 60%;
	height: auto;
	z-index: 2;
}
.text-landing {
	transition: 0.3s;
}
.row1-button {
	margin-top: 20px;
	text-align: center;
}
.row1-button a {
	background: var(--yellow);
	padding: 0.7em 1.2em;
	outline: none;
	border: 2px solid rgb(0, 0, 0);
	color: black;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 15px;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
	margin: 0px 1em;
	transition: 0.3s;
}
.row1-button a:hover {
	background: var(--dark-yellow);
	color: white;
	border: none;
}
.row2-button {
	margin-top: 20px;
	text-align: center;
}
.fa {
	padding: 20px;
	font-size: 25px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	color: #000;
}
.fa:hover {
	color: var(--yellow);
}

header {
	background-image: url('img/background-dumpling-white.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
header .container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	min-height: 90vh;
}
.header-text h1 {
	font-size: 7em;
	font-family: 'Give You Glory', cursive;
	font-weight: 500;
	margin-bottom: 10px;
	text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.header-text h2 {
	font-family: 'Give You Glory', cursive;
	font-weight: 300;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	min-height: 10vh;
	font-family: 'Bebas Neue', sans-serif;
	background: white;
	scroll-padding-top: 70px;
	background-color: white;
	opacity: 0.98;
	z-index: 9999;
	max-width: 100vw;
}
.navbar a {
	color: black;
	transition: 0.3s;
}
.a-nav:hover {
	color: #f1eb9c;
}

.scrolled-index {
	z-index: -42421;
}
.logo_scrolled {
	padding-left: 20%;
}
.btn_scrolled {
	padding-right: 0%;
}
.navbarcontent_scrolled {
	color: black;
}
#klamerka_logo {
	max-height: 10vh;
	height: 100%;
	padding-left: 20%;
}
.yellow-letter {
	color: black;
}
.navbar .menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3em;
	z-index: 1000;
}
.menu-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 2.3em;
	display: none;
}
.btn-list-item {
	display: none;
}
.img-landing,
.text-landing {
	z-index: 0;
}
.row2-button a {
	color: var(--yellow);
}
.row2-button a:hover {
	color: var(--dark-yellow);
}
/* HEADER MOBILE */
@media screen and (max-width: 1000px) {
	.menu-btn {
		display: block;
		margin-right: 10%;
		font-size: 2em;
		color: black;
	}

	.navbar .menu {
		background: white;
		box-shadow: 0em 1em 8em rgba(26, 26, 26, 0.1);
		position: absolute;
		left: 0;
		top: 6em;
		width: 100%;
		height: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		opacity: 0;
		transition: 0.6s;
		overflow: hidden;
		z-index: 9;
	}
	.navbar .buttons {
		display: none;
	}
	.btn-list-item {
		display: block;
	}
	.navbar {
		width: 100vw;
	}
	#klamerka_logo {
		padding-bottom: 10px;
		margin-top: 20px;
		max-height: 6vh;
	}
	.menu-btn {
		font-size: 12px;
		background: #d59dad;
		padding: 1em 1.8em;
		outline: none;
		border: 2px solid white;
		color: white;
		text-transform: uppercase;
		letter-spacing: 2px;
		overflow: hidden;
		border-radius: 20px;
		cursor: pointer;
		margin: 0 1.5em;
		transition: 0.3s;
	}
	.menu-btn a {
		font-family: 'Bebas Neue', sans-serif;
	}
	.header{
		background-size: cover;
	}
}

/* ABOUT US MOBILE */
.about-us {
	background-image: url('img/background-dumpling-white.png');
	background-size: cover;
}
.about-text {
	padding: 1em 3em;
	max-width: 60rem;
	margin: 0 auto;
	text-align: center;
}
.about-text h1 {
	font-size: 2.5em;
	color: #d59dad;
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.about-text h2 {
	font-size: 1.2em;
	font-weight: 200;
}
.about-text p {
	font-size: 1em;
	line-height: 1.4em;
	font-weight: 100;
}
.about-img {
	text-align: center;
	padding-bottom: 35px;
}
.about-img-src {
	min-width: 15rem;
	height: 20rem;
	padding: 0 1em;
	border-radius: 15%;
	margin-bottom: 3.5em;
}
.about-us a {
	color: blue;
}
/* MEDIA ABOUT US --BIG SCREEN */
@media screen and (min-width: 1000px) {
	.about-text h1 {
		font-size: 4.5rem;
		font-weight: 900;
	}
	.about-text h2 {
		font-size: 1.3rem;
		font-weight: 200;
	}
	.about-text p {
		font-size: 1.2rem;
		line-height: 1.7rem;
		font-weight: 100;
	}
	.about-img {
		text-align: center;
	}
	.about-img-src {
		min-width: 15rem;
		height: 20rem;
		padding: 0 1em;
		border-radius: 15%;
		margin-bottom: 1em;
	}
}
/* SPECIAL OFFER */
.speciall-offer {
	background-image: url(/img/background_green.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.SCtext {
	padding-top: 30px;
	margin-bottom: 30px;
	text-align: center;
}
.SCtext h1 {
	font-size: 2.5em;
	color: var(--pink);
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.SCtext p {
	font-size: 1em;
}
.SCcards {
	--cards-text-color: white;
	--cards-closed-size: 4rem;
	--animation-speed-normal: 0.5s;
	--animation-speed-fast: 0.25s;

	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}
.SCmargin {
	padding-top: 10%;
}

.SCcard {
	width: 100%;
	height: var(--cards-closed-size);
	overflow: hidden;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
	transition: all var(--animation-speed-normal) ease-in-out;
	cursor: pointer;
}

.SCcard[active] {
	height: 56vw;
}

.SCcard__image {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	filter: brightness(0.675) saturate(75%);
	transition: filter var(--animation-speed-fast) ease-in-out;
}

.SCcard:hover .SCcard__image {
	filter: brightness(0.875) saturate(100%);
}

.SCcard__infos {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	height: var(--cards-closed-size);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.125rem;
	width: 100%;
	padding: 0.25rem 1rem;
}

.SCcard__name {
	margin: 0;
	color: var(--cards-text-color);
	transform: translateY(0.65rem);
	transition: all var(--animation-speed-normal) ease-in-out;
	font-size: 1.5rem;
}

.SCcard[active] .SCcard__name {
	transform: translateY(0);
}

.SCcard__author {
	margin: 0;
	color: var(--cards-text-color);
	text-decoration: none;
	transform: translateY(0.65rem);
	opacity: 0;
	transition: opacity var(--animation-speed-fast) ease-in-out, transform var(--animation-speed-normal) ease-in-out;
}

.SCcard[active] .SCcard__author {
	transform: translateY(0);
	opacity: 1;
}

.SCcard[active] .SCcard__author:hover {
	opacity: 0.75;
}

@media screen and (min-width: 640px) {
	.SCcards {
		max-width: 640px;
		margin: 0 auto;
		flex-direction: row;
	}
	.SCmargin {
		padding-top: 40px;
	}
	.SCcard {
		width: var(--cards-closed-size);
		height: 20rem;
		flex: 0 0 var(--cards-closed-size);
	}

	.SCcard[active] {
		width: 100%;
		height: 20rem;
		flex: 0 0 calc(640px - 19rem);
	}

	.SCcard__name {
		transform: rotate(-90deg) translate(1rem, -1.2rem);
	}
}

/* SEASONALS */

.cards {
	margin-top: 2em;
	margin-bottom: 2em;
}

.cards .container {
	padding: 2em 0 0 1em;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	grid-gap: 2em;
}
.cards .text {
	text-align: center;
	padding: 0 1em;
}
.cards .text h1 {
	font-size: 2.5em;
	color: var(--pink);
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.cards .text .h1-seasonals {
	margin-top: 20px;
	font-size: 2em;
	color: var(--green);
}
.cards .text h2 {
	font-size: 1em;
	margin-bottom: 30px;
	font-weight: 200;
}

.cards video {
	width: 100%;
	border-radius: 2.5em;
	margin-top: -4em;
	transition: 0.3s;
}

.card {
	background: #fff;
	padding: 2em;
	border-radius: 2.5em;
}

.card-text {
	margin: 1.5em 1em 0 1em;
	text-align: center;
}
.card p {
	margin: 1em 0;
	font-size: 1.1em;
	line-height: 27px;
}
.card .rating {
	margin-left: 7px;
}

.card:hove img {
	transform: translateY(-2em);
}
#season-offer-tittle {
	color: #eff3f1 !important;
}
.h1-seasonals-time {
	padding-bottom: 20px;
	color: #a15537 !important;
	border-color: wheat;
}
.seasonals-emoji {
	color: transparent;
	text-shadow: 0 0 0 #8c4734;
}

/* SEASONALS MOBILE */
@media screen and (max-width: 1000px) {
	.cards .container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.card {
		margin: 0.5em 0;
		padding-bottom: 16px;
	}
	.card video {
		width: 50%;
	}
	.card-text {
		margin-top: 10px;
	}
	.card p {
		margin: 0.5em 0;
	}
}
/* MENU */
.menu-restaurant .text {
	text-align: center;
}
.menu-restaurant .text h1 {
	font-size: 2em;
	color: var(--pink);
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
	margin-top: 20px;
}
.menu-restaurant .text h2 {
	font-size: 1em;
	margin-bottom: 30px;
	font-weight: 200;
}
.objects {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1em;
}
.buttons {
	text-align: center;
}
.menu-restaurant .buttons .btn-menu {
	margin-left: 2em;
	background: var(--yellow);
	padding: 0.5em 0.9em;
	outline: none;
	border: 2px solid white;
	color: black;
	text-transform: uppercase;
	letter-spacing: 2px;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
	margin: 0 2em;
	transition: 0.3s;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1em;
}
.menu-restaurant .buttons .btn-menu:nth-child(1) {
	background-color: rgb(206, 198, 198);
	color: white;
}
.menu-restaurant .buttons .btn-menu:nth-child(1):hover {
	background-color: white;
	color: rgb(206, 198, 198);
	border: 1px solid black;
}
.menu-restaurant .buttons .btn-menu:nth-child(2) {
	background-color: var(--green);
	color: white;
}
.menu-restaurant .buttons .btn-menu:nth-child(2):hover {
	background-color: white;
	color: var(--green);
	border: 1px solid black;
}
.menu-restaurant .buttons .btn-menu:nth-child(3) {
	background-color: var(--yellow);
	color: white;
}
.menu-restaurant .buttons .btn-menu:nth-child(3):hover {
	background-color: white;
	color: var(--yellow);
	border: 1px solid black;
}
.menu-restaurant .buttons .btn-menu:nth-child(4) {
	background-color: var(--pink);
	color: white;
}

.menu-restaurant {
	background-color: #fff;
}
.menu-restaurant a {
	color: blue;
}
.menu-restaurant .objects {
	display: grid;
	margin: 1em 2em;
	grid-template-columns: 25% 25% 25% 25%;
	justify-content: space-evenly;
	justify-items: center;
	background-image: linear-gradient(
		90deg,
		#cbded7 25%,
		#ffffff 25%,
		#ffffff 50%,
		#cbded7 50%,
		#cbded7 75%,
		#ffffff 75%,
		#ffffff 100%
	);
	background-size: 200px;
}

.menu-restaurant .box {
	width: 125px;
	line-height: 30px;
	text-align: center;
	margin: 10px;
	font-family: 'Amatic SC', cursive;
	font-weight: 580;
}
.menu-restaurant .menu-position {
	font-size: 2.3em;
	margin-bottom: 0;
}
.menu-restaurant .menu-description {
	font-family: 'Barlow Condensed', sans-serif;
	margin-top: 0;
	font-size: 0.65em;
}
/* MENU MOBILE */
@media screen and (max-width: 800px) {
	.menu-restaurant .objects {
		grid-template-columns: 50% 50%;
	}
	.menu-restaurant .box {
		font-size: 1.1em;
	}
}
/* MENU JS */
.activeBtn {
	color: #000;
}
.non-active {
	display: none;
}
/* DOGS */

.dogs {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-areas: 'dog text';
	min-height: 50vh;
	background: radial-gradient(circle, #cbded7 10%, transparent 11%),
		radial-gradient(circle at bottom left, #cbded7 5%, transparent 6%),
		radial-gradient(circle at bottom right, #cbded7 5%, transparent 6%),
		radial-gradient(circle at top left, #cbded7 5%, transparent 6%),
		radial-gradient(circle at top right, #cbded7 5%, transparent 6%);
	background-size: 3em 3em;
	background-color: #ffffff;
	opacity: 1;
}
.dogs .text {
	grid-area: text;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	text-align: center;
}
#dog {
	grid-area: dog;
	width: 500px;
	height: 500px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
}

.bottom {
	height: 40px;
	width: 300px;
	background-color: var(--yellow);
	border-radius: 50%;
	position: absolute;
	bottom: 100px;
	left: 100px;
}

.tail {
	height: 60px;
	width: 170px;
	background-color: var(--yellow);
	border-radius: 50%;
	position: absolute;
	bottom: 180px;
	left: 100px;
	transform: rotate(35deg);
	animation: tail-animation 5s infinite;
}

.tail:after {
	content: '';
	height: 30px;
	width: 170px;
	background-color: var(--dark-yellow);
	position: absolute;
	bottom: 30px;
	left: 0px;
}

.body {
	height: 140px;
	width: 120px;
	border-radius: 40px 40px 0px 0px;
	position: absolute;
	bottom: 120px;
	left: 190px;
	background-color: var(--yellow);
}

.stomach {
	height: 95px;
	width: 45px;
	background-color: white;
	border-radius: 40px 40px 0px 0px;
	position: absolute;
	bottom: 120px;
	left: 227.5px;
}

.back-left-leg {
	height: 60px;
	width: 25px;
	border-radius: 18px 0px 0px 0px;
	position: absolute;
	bottom: 120px;
	left: 165px;
	background-color: var(--dark-yellow);
}

.back-left-leg-2 {
	height: 17px;
	width: 35px;
	border-radius: 15px 0px 0px 0px;
	position: absolute;
	bottom: 120px;
	left: 150px;
	background-color: var(--dark-yellow);
}

.back-right-leg {
	height: 60px;
	width: 25px;
	border-radius: 0px 18px 0px 0px;
	position: absolute;
	bottom: 120px;
	right: 165px;
	background-color: var(--dark-yellow);
}

.back-right-leg-2 {
	height: 17px;
	width: 35px;
	border-radius: 0px 15px 0px 0px;
	position: absolute;
	bottom: 120px;
	right: 150px;
	background-color: var(--dark-yellow);
}
.front-left-leg {
	height: 20px;
	width: 49px;
	border-radius: 18px 0px 0px 0px;
	position: absolute;
	bottom: 120px;
	left: 170px;
	background-color: var(--yellow);
}

.front-right-leg {
	height: 20px;
	width: 49px;
	border-radius: 0px 18px 0px 0px;
	position: absolute;
	bottom: 120px;
	right: 170px;
	background-color: var(--yellow);
}

.belt {
	height: 12px;
	width: 100px;
	background-color: var(--pink);
	border-radius: 3px;
	position: absolute;
	bottom: 250px;
	left: 200px;
}

.belt2 {
	height: 16px;
	width: 24px;
	background-color: var(--dark-yellow);
	border-radius: 5px;
	position: absolute;
	bottom: 248px;
	left: 238px;
}

.head {
	height: 180px;
	width: 170px;
	position: absolute;
	bottom: 250px;
	left: 165px;
	animation: head-animation 5s infinite;
}

.face {
	height: 180px;
	width: 170px;
	border-radius: 70px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	background-color: var(--yellow);
}

.w1 {
	height: 63px;
	width: 132px;
	background-color: white;
	border-radius: 50px;
	position: absolute;
	bottom: 23px;
	left: 19px;
	animation: wi-animation 5s infinite;
}

.w2 {
	height: 95px;
	width: 57px;
	background-color: white;
	border-radius: 55px;
	position: absolute;
	bottom: 40px;
	right: 38px;
	animation: wii-animation 5s infinite;
}

.w3 {
	height: 95px;
	width: 57px;
	background-color: white;
	border-radius: 55px;
	position: absolute;
	bottom: 40px;
	left: 38px;
	animation: wiii-animation 5s infinite;
}

.nose {
	height: 12px;
	width: 25px;
	background-color: black;
	border-radius: 5px 5px 15px 15px;
	position: absolute;
	bottom: 60px;
	left: 72.5px;
	animation: nose-animation 5s infinite;
}

.left-eye {
	height: 12px;
	width: 12px;
	background-color: black;
	border-radius: 50%;
	position: absolute;
	bottom: 90px;
	left: 60px;
	animation: lefteye-animation 5s infinite;
}

.right-eye {
	height: 12px;
	width: 12px;
	background-color: black;
	border-radius: 50%;
	position: absolute;
	bottom: 90px;
	right: 60px;
	animation: righteye-animation 5s infinite;
}

.left-ear {
	height: 100px;
	width: 50px;
	border-radius: 50%;
	position: absolute;
	bottom: 100px;
	left: 0px;
	z-index: -2;
	animation: leftear-animation 5s infinite;
	background-color: var(--yellow);
}

.left-ear:after {
	content: ' ';
	height: 80px;
	width: 40px;
	background-color: var(--pink);
	border-radius: 50%;
	position: absolute;
	bottom: 10px;
	left: 5px;
	z-index: -2;
}

.right-ear {
	height: 100px;
	width: 50px;
	border-radius: 50%;
	position: absolute;
	bottom: 100px;
	right: 0px;
	z-index: -2;
	background-color: var(--yellow);
	animation: rightear-animation 5s infinite;
}

.right-ear:after {
	content: ' ';
	height: 80px;
	width: 40px;
	background-color: var(--pink);
	border-radius: 50%;
	position: absolute;
	bottom: 10px;
	right: 5px;
	z-index: -2;
}

.left-mount {
	height: 23px;
	width: 25px;
	background-color: white;
	border-radius: 50%;
	position: absolute;
	border: black solid 3px;
	bottom: 40px;
	left: 55.5px;
	animation: leftmount-animation 5s infinite;
}

.right-mount {
	height: 23px;
	width: 25px;
	background-color: rgb(255, 255, 255);
	border-radius: 50%;
	position: absolute;
	border: black solid 3px;
	bottom: 40px;
	right: 55.5px;
	animation: rightmount-animation 5s infinite;
}

.mount2 {
	height: 20px;
	width: 63px;
	background-color: white;
	position: absolute;
	bottom: 57px;
	left: 53px;
	animation: mount2-animation 5s infinite;
}

.mount1 {
	height: 18px;
	width: 25px;
	background-color: transparent;
	border-radius: 0px 0px 18px 18px;
	position: absolute;
	bottom: 30px;
	left: 72.5px;
	animation: mount1-animation 5s infinite;
}

.tongue {
	height: 18px;
	width: 18px;
	background-color: transparent;
	border-radius: 4px 4px 10px 10px;
	position: absolute;
	bottom: 22px;
	left: 76px;
	animation: tongue-animation 5s infinite;
}
.dog-img img {
	display: none;
}

@keyframes tongue-animation {
	1% {
		background-color: transparent;
	}
	49% {
		background: transparent;
	}
	49.7% {
		background-color: #db3438;
	}
	51% {
		height: 24px;
		bottom: 16px;
	}
	53% {
		height: 18px;
		bottom: 22px;
	}
	55% {
		height: 24px;
		bottom: 16px;
	}
	57% {
		height: 18px;
		bottom: 22px;
	}
	59% {
		height: 24px;
		bottom: 16px;
	}
	61% {
		height: 18px;
		bottom: 22px;
	}
	62% {
		height: 24px;
		bottom: 16px;
	}
	64% {
		height: 18px;
		bottom: 22px;
	}
	66% {
		height: 24px;
		bottom: 16px;
	}
	68% {
		height: 18px;
		bottom: 22px;
	}
	70% {
		height: 24px;
		bottom: 16px;
	}
	72% {
		height: 18px;
		bottom: 22px;
	}
	74% {
		height: 24px;
		bottom: 16px;
	}
	76% {
		height: 18px;
		bottom: 22px;
	}
	78% {
		height: 24px;
		bottom: 16px;
	}
	80% {
		height: 18px;
		bottom: 22px;
	}
	82% {
		height: 24px;
		bottom: 16px;
	}
	84% {
		height: 18px;
		bottom: 22px;
	}
	86% {
		height: 24px;
		bottom: 16px;
	}
	88% {
		height: 18px;
		bottom: 22px;
	}
	89% {
		height: 10px;
		bottom: 30px;
	}
	90% {
		height: 2px;
		bottom: 38px;
	}
	91% {
		background-color: #db3438;
	}
	91.5% {
		background-color: transparent;
	}
}

@keyframes tail-animation {
	51% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	53% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	55% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	57% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	59% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	61% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	63% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	65% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	67% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	69% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	71% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	73% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	75% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	77% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	79% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	81% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	83% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	85% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
	87% {
		transform: rotate(65deg);
		left: 120px;
		bottom: 193px;
	}
	89% {
		bottom: 180px;
		left: 100px;
		transform: rotate(35deg);
	}
}

@keyframes mount1-animation {
	1% {
		background: transparent;
	}
	49% {
		background: transparent;
	}
	49.7% {
		background: black;
	}
	89% {
		height: 18px;
		bottom: 30px;
	}
	90% {
		height: 10px;
		bottom: 38px;
	}
	91% {
		background-color: black;
	}
	91.5% {
		background-color: transparent;
	}
}

@keyframes head-animation {
	10% {
		transform: rotate(10deg) translate(2px, 2px);
	}
	40% {
		transform: rotate(0deg) translate(0px, 0px);
	}
}

@keyframes wi-animation {
	10% {
		left: -4px;
		bottom: 26px;
	}
	40% {
		bottom: 43px;
		left: 19px;
	}
	50% {
		bottom: 23px;
		left: 19px;
	}
}
@keyframes wii-animation {
	10% {
		right: 61px;
	}
	40% {
		bottom: 55px;
		right: 38px;
	}
	50% {
		bottom: 40px;
		right: 38px;
	}
}
@keyframes wiii-animation {
	10% {
		left: 15px;
	}
	40% {
		bottom: 55px;
		left: 38px;
	}
	50% {
		bottom: 40px;
		left: 38px;
	}
}
@keyframes lefteye-animation {
	10% {
		bottom: 94px;
		left: 20px;
	}
	37% {
		bottom: 130px;
		left: 60px;
	}
	40% {
		height: 12px;
	}
	41% {
		height: 2px;
	}
	42% {
		height: 12px;
	}
	54% {
		bottom: 90px;
		left: 60px;
	}
	71% {
		height: 12px;
	}
	72% {
		height: 2px;
	}
	73% {
		height: 12px;
	}
}

@keyframes righteye-animation {
	10% {
		bottom: 94px;
		right: 90px;
	}
	37% {
		bottom: 130px;
		right: 60px;
	}
	40% {
		height: 12px;
	}
	41% {
		height: 2px;
	}
	42% {
		height: 12px;
	}
	54% {
		bottom: 90px;
		right: 60px;
	}
	71% {
		height: 12px;
	}
	72% {
		height: 2px;
	}
	73% {
		height: 12px;
	}
}
@keyframes nose-animation {
	10% {
		bottom: 65px;
		left: 35px;
	}
	40% {
		bottom: 95px;
		left: 72.5px;
	}
	50% {
		bottom: 60px;
		left: 72.5px;
	}
}
@keyframes leftmount-animation {
	10% {
		bottom: 45px;
		left: 18px;
	}
	40% {
		bottom: 75px;
		left: 55.5px;
	}
	50% {
		bottom: 40px;
		left: 55.5px;
	}
}
@keyframes rightmount-animation {
	10% {
		bottom: 45px;
		right: 92px;
	}
	40% {
		bottom: 75px;
		right: 55.5px;
	}
	50% {
		bottom: 40px;
		right: 55.5px;
	}
}
@keyframes mount2-animation {
	10% {
		bottom: 62px;
		left: 16px;
	}
	40% {
		bottom: 92px;
		left: 53px;
	}
	50% {
		bottom: 57px;
		left: 53px;
	}
}
@keyframes leftear-animation {
	10% {
		bottom: 90px;
		left: 0px;
	}
	40% {
		bottom: 90px;
		left: 0px;
	}
	50% {
		bottom: 100px;
		left: 0px;
	}
	76% {
		transform: rotate(0deg);
	}
	77% {
		transform: rotate(-20deg);
	}
	79% {
		transform: rotate(0deg);
	}
}

@keyframes rightear-animation {
	40% {
		bottom: 90px;
		right: 0px;
	}
	50% {
		bottom: 100px;
		right: 0px;
	}
	76% {
		transform: rotate(0deg);
	}
	77% {
		transform: rotate(20deg);
	}
	79% {
		transform: rotate(0deg);
	}
}
/* DOGS MOBILE */
@media screen and (max-width: 1000px) {
	.dogs {
		display: grid;
		grid-template-columns: 100%;
		grid-template-rows: 20% auto;
		grid-template-areas:
			'text-mobile'
			'dog-mobile';
		margin-bottom: 10px;
	}
	.dogs .text {
		grid-area: text-mobile;
		justify-content: center;
		margin-top: 20px;
	}
	.dogs .text p {
		margin-left: 10px;
		margin-right: 10px;
		font-size: 1em;
	}
	#dog {
		grid-area: dog-mobile;
		margin-top: 0;
	}
}
@media screen and (max-width: 640px) {
	#dog {
		padding-left: 5em;
	}
}
@media screen and (max-width: 600px) {
	#dog {
		padding-left: 3em;
	}
}
@media screen and (max-width: 500px) {
	.dogs {
		display: none;
	}
}

/* DOGS 2 */
.dogs-mobile {
	display: none;
}
@media screen and (max-width: 500px) {
	.dogs-mobile {
		display: block;
		text-align: center;
	}
	.dogs-mobile .text {
		margin-top: 50px;
	}
	.dogs-mobile p {
		margin-bottom: 0;
	}
	.dog-img img {
		display: block;
		margin-top: 20px;
		margin: 30px auto 20px;
		max-width: 100%;
		height: auto;
		border-radius: 25%;
	}
}
/* REVIEWS 2 */
.review2 {
	background-image: url('img/background-dumpling-white.png');
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100vh;
	display: flex;
}

.review-container {
	max-width: 1200px;
	margin: auto;
	padding: 1rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10rem;
}

.container__left h1 {
	font-family: 'Bebas Neue', sans-serif;
	margin-bottom: 2rem;
	font-size: 2.5rem;
	font-weight: 500;
	color: var(--dark-yellow);
}

.container__left p {
	color: bl;
	margin-bottom: 1rem;
}

.container__left button {
	font-family: 'Bebas Neue', sans-serif;
	padding: 1rem 2rem;
	margin-top: 1rem;
	outline: none;
	border: none;
	border-radius: 15px;
	background-color: var(--pink);
	color: white;
	font-size: 1rem;
	cursor: pointer;
	transition: 0.3s;
}
.container__left a {
	color: black;
}
.container__left button:hover {
	background-color: white;
	color: var(--pink);
	border: 1px solid var(--pink);
}

.container__right {
	display: grid;
	gap: 2rem;
}

.review-card {
	padding: 2rem;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	background-color: var(--white);
	border-radius: 1rem;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.review-card img {
	max-width: 75px;
	border-radius: 25%;
}

.review-card__content {
	display: flex;
	gap: 1rem;
}

.review-card__content span i {
	font-size: 2rem;
	color: var(--primary-color);
}

.-review-card__details p {
	font-style: italic;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.review-card__details h4 {
	text-align: right;
	color: var(--primary-color);
	font-size: 1rem;
	font-weight: 500;
}

@media screen and (max-width: 1200px) {
	.container {
		gap: 3rem;
	}
}

@media screen and (max-width: 900px) {
	.review-container {
		grid-template-columns: repeat(1, 1fr);
	}

	.container__right {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 750px) {
	.container__right {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* OPENING HOURS */
.contact {
	background-image: url(/img/background-dumpling-white.png);
}
.contact-content {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-rows: 33.33% 33.33% 33.33%;
	grid-template-areas:
		'hours ff'
		'hours info'
		'hours f';
	padding-bottom: 25px;
}
.contact-content .info-list {
	padding-top: 20px;
	padding-bottom: 2px;
	text-align: center;
}
.contact-content .info-list h2 {
	font-size: 1.7em;
	color: white;
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.contact-content .info-list p {
	font-size: 1.2em;
	margin-top: 2px;
}
.contact-content .info-list a {
	color: black;
}
.contact-content .info-list i {
	margin-right: 7px;
}

.contact-info {
	grid-area: info;
	text-align: center;
}

.opening-hours {
	grid-area: hours;
}

.contact h1 {
	text-align: center;
	font-size: 2.5em;
	color: var(--pink);
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
	padding-bottom: 25px;
	padding-top: 25px;
}

.opening-hours .heading {
	text-align: center;
	padding-top: 10px;
}
.opening-hours .heading h1 {
	font-size: 2em;
	color: var(--green);
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.opening-hours .day-list {
	padding-top: 10px;
	padding-bottom: 2px;
	text-align: center;
}
.opening-hours .day-list h2 {
	font-size: 1.7em;
	color: white;
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.opening-hours .day-list p {
	font-size: 1.2em;
	text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
	margin-top: 2px;
}
@media screen and (max-width: 500px) {
	.contact-info {
		font-size: 0.8em;
	}
	.opening-hours .heading h1 {
		font-size: 1.4em;
		color: var(--pink);
	}
	.opening-hours .day-list h2 {
		font-size: 1.2em;
	}
	.opening-hours .day-list p {
		font-size: 1em;
	}
}
/* MAP */
.map {
	padding-bottom: 50%;
	position: relative;
}
.map iframe {
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;
}
@media screen and (max-width: 500px) {
	.map {
		padding-bottom: 100%;
	}
}

/* FOOTER */
footer {
	text-align: center;
}
footer a {
	color: #d59dad;
}

/* ANIMISTA ANIMATIONS */
/* ----------------------------------------------
 * Generated by Animista on 2023-6-21 20:8:13
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

.fade-in {
	-webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
	animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
}
.slide-in-blurred-bottom {
	-webkit-animation: slide-in-blurred-bottom 1s cubic-bezier(0.23, 1, 0.32, 1) 0.6s both;
	animation: slide-in-blurred-bottom 1s cubic-bezier(0.23, 1, 0.32, 1) 0.6s both;
}
.bounce-in-fwd {
	-webkit-animation: bounce-in-fwd 1s 0.6s both;
	animation: bounce-in-fwd 1s 0.6s both;
}

@-webkit-keyframes slide-in-blurred-bottom {
	0% {
		-webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
		transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) scaleY(1) scaleX(1);
		transform: translateY(0) scaleY(1) scaleX(1);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
}
@keyframes slide-in-blurred-bottom {
	0% {
		-webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
		transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) scaleY(1) scaleX(1);
		transform: translateY(0) scaleY(1) scaleX(1);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
}
@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes bounce-in-fwd {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	72% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	81% {
		-webkit-transform: scale(0.84);
		transform: scale(0.84);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	89% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	95% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}
@keyframes bounce-in-fwd {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	72% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	81% {
		-webkit-transform: scale(0.84);
		transform: scale(0.84);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	89% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	95% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}
.heartbeat {
	-webkit-animation: heartbeat 2s ease-in-out infinite both;
	animation: heartbeat 2s ease-in-out infinite both;
}
@-webkit-keyframes heartbeat {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	10% {
		-webkit-transform: scale(0.91);
		transform: scale(0.91);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	17% {
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	33% {
		-webkit-transform: scale(0.87);
		transform: scale(0.87);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	45% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}
@keyframes heartbeat {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	10% {
		-webkit-transform: scale(0.91);
		transform: scale(0.91);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	17% {
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	33% {
		-webkit-transform: scale(0.87);
		transform: scale(0.87);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	45% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}
