/* Speciality */

body {
	background: #202124;
}

main {
	padding: 4rem 2rem;
}

.title_wrapper {
	width: 60%;
}

.container__special {
	width: 100%;
	max-width: 1200px;
	border-radius: 4px;
	margin: 0 auto;
	padding: 2rem 0;
	transition: 0.5s ease-in-out both;
}

.container__special > .content {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: center;
	margin-top: 3rem;
	padding: 0 8rem;
}

.content .wrapper {
	width: 25%;
	height: 100%;
}

.box {
	position: relative;
	max-height: 250px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 1.4px 1.7px rgba(0, 0, 0, 0.017),
		0 3.3px 4px rgba(0, 0, 0, 0.024), 0 6.3px 7.5px rgba(0, 0, 0, 0.03),
		0 11.2px 13.4px rgba(0, 0, 0, 0.036),
		0 20.9px 25.1px rgba(0, 0, 0, 0.043), 0 50px 60px rgba(0, 0, 0, 0.06);
}

.box .hide {
	opacity: 0;
}

.box .frame {
	position: absolute;
	border: 2px solid #cb6821;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.box h2,
.box p {
	position: absolute;
	color: #fff;
	font-weight: 600;
	z-index: 2;
	width: 100%;
	transition: opacity 0.2s, transform 0.3s;
}
.box h2 {
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.box p {
	bottom: 0;
	font-size: 14px;
	letter-spacing: 1px;
}
.box:hover {
	transition: all 0.3s ease-in-out;
}
.box:hover:before {
	transition: all 0.3s ease-in-out;
}

.box img {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(1.2);
	transition: all 0.3s ease-in-out;
}

.box img:hover {
	transition: all 0.3s ease-in-out;
}

.box img:after {
	content: "";
	position: absolute;
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}
.box img:hover {
	transition: all 0.3s ease-in-out;
}

.btn_container {
	padding-block: 1.5rem;
	display: flex;
	justify-content: center;
}

.btn_container .btn {
	border-radius: 0;
	background-color: #cb6821;
	color: #fff;
	transition: 0.3s;
}

.btn_container .btn:hover {
	padding: 1rem 2rem;
}

.DownloadBtn {
	padding: 0.8rem 2rem;
	transform: scale(1);
	transition: 0.3s ease-in-out;
}

.DownloadBtn:hover {
	transform: scale(1.1);
}

.DownloadBtn a {
	color: #202124;
}

.food h2 {
	top: 15%;
	transform: translate3d(0, 60px, 0);
	text-align: center;
}
.food p {
	opacity: 0;
	bottom: 0;
	transform: translate3d(0, -10px, 0);
	font-size: 14px;
	letter-spacing: 1px;
	text-align: center;
}
.food:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(26, 26, 28, 0.211) 0%,
		rgba(35, 36, 39, 0.902) 75%
	);
	z-index: 2;
	bottom: -100%;
	left: 0;
}
.food:hover:before {
	bottom: 0;
}
.food:hover h2 {
	bottom: 40px;
	transform: translate3d(0, 20px, 0);
}
.food:hover p {
	opacity: 1;
	transform: translate3d(0, -30px, 0);
}

@media (max-width: 992px) {
	.container__special > .content {
		padding: 0;
	}
}

@media (max-width: 768px) {
	.content .wrapper {
		width: 30%;
	}

	.title_wrapper {
		width: 100%;
	}
}

@media screen and (max-width: 520px) {
	.container__special > .content {
		flex-direction: column;
		align-items: center;
	}

	.content .wrapper {
		width: 60%;
	}
}
