.menu {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	position: relative;
	overflow: hidden;
	padding: 50px;

	@media screen and (width <= 480px) {
		padding: 15px;
	}
}

.menu__cards {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 55px;
	width: 100%;
	max-width: 1200px;
	position: relative;
	z-index: 2;
	/* padding: 0 20px; */

	& .menu__card {
		width: min(100%, 330px);
		aspect-ratio: 1 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		color: #0F1516;
		overflow: hidden;
		position: relative;
		background: rgba(255, 255, 255, 0.8);
		cursor: pointer;
		text-decoration: none;
		text-align: center;
		padding: 20px;
		border-radius: 50%;
	}
}

.menu__title {
	z-index: 12;
	margin: 0 0 12px 0;
	font-size: 1.5rem;
	line-height: 1.1;
}

.menu__description {
	width: 90%;
	z-index: 12;
	margin: 0;
	margin-top: 15px;
	line-height: 1.4;
	font-size: 0.95rem;
}

.menu__image {
	position: absolute;
	z-index: 9;
	width: 100%;
	height: 100%;
	object-fit: cover;
	inset: 0;
	filter: grayscale(1) brightness(0.5);
	transition: filter 0.5s ease;
}

.menu__card:hover .menu__image {
	filter: grayscale(0) brightness(0.5);
}

.menu__card::before {
	content: '';
	background: #EB6500;
	width: 40px;
	height: 40px;
	position: absolute;
	border-radius: 50%;
	right: -30px;
	bottom: -30px;
	transition: transform 0.5s ease;
	z-index: 10;
}

.menu__card:hover::before {
	transform: scale(10);
}

.bee {
	position: fixed;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
	pointer-events: none;
	z-index: 50;
	will-change: transform;
}

    @media (width <= 1000px) {
      .menu__cards {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
}