.catalog-menu {
	position: absolute;
	top: 144px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	z-index: 25;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 3px;
}
.catalog-menu:not(.active) {
	display: none;
}
.catalog-menu-wrapper {
	background: #fff;
	border-radius: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	height: 582px;
}
.catalog-menu-left {
	width: 320px;
	height: 100%;
	overflow-y: auto;
	padding: 25px 25px 0 25px;
}
.catalog-menu-category-main {
	text-decoration: none;
	color: #000;
	padding: 7px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 6px;
}
.catalog-menu-category-main:hover {
	background: rgba(245, 245, 245, 1);
}
.catalog-menu-category-main-text {
	font-family: Inter;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}
.catalog-menu-category-main-icon {
	display: none;
	margin-left: 0;
	margin-right: 0;
}
.catalog-menu-category-main:hover .catalog-menu-category-main-icon {
	display: block;
}
.catalog-menu-service {
	background: rgba(251, 142, 0, 1);
	color: #fff;
}
.catalog-menu-service:hover {
	background: linear-gradient(321.17deg, #E31E24 44.13%, #F39513 104.24%);
}
.catalog-menu-service-text {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.catalog-menu-service-icon {
	margin-right: 5px;
}

.catalog-menu-body {
	width: calc(100% - 320px);
	height: 100%;
	overflow-y: auto;
	padding: 50px 18px 18px 40px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.catalog-menu-category {
	width: calc(100% - 264px - 20px);
}
.catalog-menu-category:not(.active) {
	display: none;
}
.catalog-menu-category-level-1 {
	font-family: Inter;
	font-weight: 600;
	font-size: 32px;
	line-height: 38px;
	color: #000;
	text-decoration: none;
}
.catalog-menu-category-level-1:hover {
	color: rgb(255, 48, 40);
}
.catalog-menu-category-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.catalog-menu-category-level-2-wrapper {
	width: calc((100% - (16px * 2)) / 3);
	margin-top: 25px;
	margin-bottom: 16px;
}
.catalog-menu-category-level-2-wrapper:not(:nth-child(3n)) {
	margin-right: 16px;
}
.catalog-menu-category-level-2 {
	font-family: Inter;
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
	color: #000;
	text-decoration: none;
}
.catalog-menu-category-level-2:hover {
	color: rgb(255, 48, 40);
}
.catalog-menu-category-level-3-wrapper {
	margin-top: 10px;
}
.catalog-menu-category-level-3 {
	font-family: Inter;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: rgba(1, 1, 1, 0.8);
	text-decoration: none;
	display: block;
}
.catalog-menu-category-level-3:not(:last-child) {
	margin-bottom: 5px;
}
.catalog-menu-category-level-3:hover {
	color: rgb(255, 48, 40);
}
.catalog-menu-banner-wrapper {
	width: 264px;
}
.catalog-menu-banner {
	display: block;
}
.catalog-menu-banner:not(:last-child) {
	margin-bottom: 12px;
}
.catalog-menu-category-service-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 25px;
}
.catalog-menu-category-service {
	padding: 12px;
	background: rgba(1, 1, 1, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	width: 220px;
	height: 112px;
	text-decoration: none;
	border-radius: 15px;
	margin-bottom: 15px;
	position: relative;
}
.catalog-menu-category-service:not(:nth-child(3n)) {
	margin-right: 13px;
}
.catalog-menu-category-service:hover {
	background: linear-gradient(321.17deg, #E31E24 44.13%, #F39513 104.24%);
}
.catalog-menu-category-service-icon {
	display: none;
    position: absolute;
    right: 12px;
    top: 12px;
}
.catalog-menu-category-service:hover .catalog-menu-category-service-icon {
	display: block;
}
.catalog-menu-category-service-image {

}
.catalog-menu-category-service-name {
	font-family: Inter;
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
	color: #000;
}
.catalog-menu-category-service:hover .catalog-menu-category-service-name {
	color: #fff;
}

@media (max-width: 576px) {
	.catalog-menu {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 130;
		overflow-y: auto;
		padding: 0;
	}
	.catalog-menu-wrapper.wrapper {
		height: 100%;
		border-radius: 0;
		padding-left: 0;
		padding-right: 0;
		background: rgba(245, 245, 245, 1);
	}
	.catalog-menu-left {
		padding: 0 0 70px 0;
		width: 100%;
	}
	.catalog-menu:not(.selected) .catalog-menu-body {
		display: none;
	}
	.catalog-menu.selected .catalog-menu-left {
		display: none;
	}
	.catalog-menu-header {
		font-family: Inter;
		font-weight: 600;
		font-size: 22px;
		line-height: 26px;
		padding: 25px 15px 15px 15px;
	}
	.catalog-menu-body {
		width: 100%;
		padding: 25px 15px 15px 15px;
	}
	.catalog-menu-category {
		width: 100%;
	}
	.catalog-menu-banner-wrapper {
		display: none;
	}
	.catalog-menu-back {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		cursor: pointer;
		margin-bottom: 8px;
	}
	.catalog-menu-back-icon {
		margin-right: 5px;
	}
	.catalog-menu-back-text {
		font-family: Inter;
		font-weight: 400;
		font-size: 14px;
		line-height: 16px;
		color: rgba(1, 1, 1, 0.5);
	}
	.catalog-menu-category-main {
		padding: 2px 16px 2px 10px;
		border-radius: 6px;
		background: #fff;
		margin-bottom: 4px;
	}
	.catalog-menu-service {
    	background: rgba(251, 142, 0, 1);
    }
	.catalog-menu-category-main-left {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.catalog-menu-category-main-image {
		width: 50px;
		height: 50px;
		margin-right: 12px;
	}
	.catalog-menu-category-main-icon {
		display: block;
	}
	.catalog-menu-category-main-text {
		font-weight: 500;
		font-size: 14px;
		line-height: 16px;
	}
	.catalog-menu-category-level-1 {
		font-weight: 600;
		font-size: 22px;
		line-height: 26px;
	}
	.catalog-menu-category-wrapper {
		margin-top: 15px;
	}
	.catalog-menu-category-level-2 {
		font-weight: 500;
		font-size: 16px;
		line-height: 18px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.catalog-menu-category-level-2:hover {
		color: #000;
	}
	.catalog-menu-category-level-2-wrapper {
		margin: 0 0 15px 0;
		width: 100%;
	}
	.catalog-menu-category-level-2-wrapper:not(:nth-child(3n)) {
		margin-right: 0;
	}
	.catalog-menu-category-level-3-wrapper {
		margin-top: 10px;
	}
	.catalog-menu-category-level-3-wrapper {
		display: none;
	}
	.catalog-menu-category-level-2-wrapper.active .catalog-menu-category-level-3-wrapper {
		display: block;
	}
	.catalog-menu-category-level-2-wrapper.active .image-dropdown {
		transform: rotate(180deg);
	}
	.catalog-menu-category-service-wrapper {
		margin-top: 0;
		margin-left: -15px;
		margin-right: -15px;
	}
	.catalog-menu-category-service:not(:nth-child(3n)) {
		margin-right: 0;
	}
	.catalog-menu-category-service {
		width: 100%;
		margin-right: 0;
		background: #fff;
		margin-bottom: 4px;
		padding: 2px 16px 2px 10px;
		background: #fff;
		height: auto;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.catalog-menu-category-service-left {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.catalog-menu-category-service-image {
		margin-right: 12px;
		width: 50px;
		height: 50px;
	}
	.catalog-menu-category-service-arrow {

	}
	.catalog-menu-banner-wrapper {
		margin-top: 15px;
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.catalog-menu-category-service-name {
		font-weight: 500;
		font-size: 14px;
		line-height: 16px;
	}
	.catalog-menu-category-level-3 {
		font-weight: 400;
		font-size: 14px;
		line-height: 16px;
	}
}