@media(min-width:1024px) {
	.tour-mega-wrap {
		display: flex;
		background: var(--color-white);
	}

	.tour-left-menu {
		width: 260px;
		border-right: 1px solid #ddd;
	}

	.tour-parent-item {
		position: relative;
		padding: 15px 20px;
		cursor: pointer;
		font-size: 18px;
		border-bottom: 1px solid #eee;
	}

	.tour-parent-item.active:after,
	.tour-parent-item:hover:after {
		content: "";
		position: absolute;
		right: 8px;
		top: 50%;
		transform: translateY(-50%);
		width: 4px;
		height: 40px;
		background: #b50000;
	}

	.tour-right-content {
		flex: 1;
		padding: 30px;
	}

	.tour-tab {
		display: none;
		grid-template-columns: repeat(4, minmax(185px, 1fr));
		gap: 30px;
	}

	.tour-tab.active {
		display: grid;
	}

	.tour-column h3 {
		margin-bottom: 15px;
	}

	.tour-column h3 a {
		color: #0056d6;
		font-size: 16px;
		text-decoration: none;
	}

	.tour-column ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.tour-column li {
		margin-bottom: 12px;
		margin-left: unset !important;
	}

	.tour-column li a {
		color: #666;
		text-decoration: none;
	}

	.tour-column li a:hover {
		color: #0056d6;
	}
}

@media(max-width:1023px) {
	.tour-mega-wrap {
		display: none;
	}
}