/*================================================
Restaurant Dishes Style
==================================================*/

.restaurant-dishes-list ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.restaurant-dishes-list ul li {
	position: relative;
	padding-left: 140px;
	padding-right: 100px;
	margin-bottom: 30px;
}
.restaurant-dishes-list ul li:last-child {
	margin-bottom: 0;
}
.restaurant-dishes-list ul li img {
	position: absolute;
	top: 0;
	left: 0;
}
.restaurant-dishes-list ul li h3 {
	font-size: 20px;
	margin-bottom: 15px;
}
.restaurant-dishes-list ul li h3 a {
	color: var(--whiteColor);
}
.restaurant-dishes-list ul li p {
	margin-bottom: 0;
}
.restaurant-dishes-list ul li span {
	position: absolute;
	top: 45px;
	right: 0;
	font-size: 25px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	z-index: 1;
	color: #fff;
}
.restaurant-dishes-list ul li span::before,
.restaurant-dishes-list ul li span::after {
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--whiteColor);
	z-index: -1;
}
.restaurant-dishes-list ul li span::after {
	top: auto;
	bottom: -40px;
}
.restaurant-dishes-bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 572px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
    .restaurant-dishes-list {
		margin-bottom: 30px;
	}
	.restaurant-dishes-list ul li {
		padding: 0;
	}
	.restaurant-dishes-list ul li img {
		position: unset;
		margin-bottom: 20px;
	}
	.restaurant-dishes-list.mt-30-for.responsive {
		margin-bottom: 0;
	}
	.restaurant-dishes-bg {
		height: 400px;
		margin-bottom: 30px;
	}
	.restaurant-dishes-bg.bg-2 {
		margin-bottom: 0;
	}
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .restaurant-dishes-list {
		margin-bottom: 30px;
	}
	.restaurant-dishes-list.mt-30-for {
		margin-bottom: 0;
	}
	.restaurant-dishes-bg {
		height: 400px;
		margin-bottom: 30px;
	}
	.restaurant-dishes-bg.bg-2 {
		margin-bottom: 0;
	}
}
