.priority-sec {
	padding-bottom: 120px;
	padding-top: 60px;
	position: relative;
}

.priority-sec .decore-img {
	max-width: 660px;
	height: 776px;
	height: 33vw;
	right: 0;
	top: 0;
	position: absolute;
	pointer-events: none;
}

.priority-sec .decore-img img {
	/* transform: translateY(-80%); */
	width: 100%;
	height: 100%;
}

.decore-img-bottom {
	max-width: 730px;
	height: 546px;
	left: 0;
	bottom: 0;
	position: absolute;
	pointer-events: none;
}

.decore-img-bottom img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	/* transform: rotateY(180deg); */
}

.priority-tab-wrap {
	display: grid;
	grid-template-columns: 360px 1fr;
	grid-gap: 30px;
}

.priority-tab-wrap .left-block ul {
	display: flex;
	flex-direction: column;
}

.priority-tab-wrap .left-block ul .priority-tab-item {
	font-size: 24px;
	font-weight: 700;
	padding: 20px 12px 20px 0;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	border-bottom: 1px solid var(--gray);
	transition: all 0.5s;
}

.priority-tab-wrap .left-block ul .priority-tab-item span {
	font-weight: 700;
}

.priority-tab-wrap .left-block ul .priority-tab-item.active,
.priority-tab-wrap .left-block ul .priority-tab-item:not(.active):hover {
	color: var(--orange);
}

.priority-tab-wrap .left-block ul .priority-tab-item.active [stroke],
.priority-tab-wrap .left-block ul .priority-tab-item:not(.active):hover [stroke] {
	transition: all 0.5s;
	stroke: var(--orange);
}

.tab-content-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
	gap: 36px;
}

.selected-label {
	display: none;
}

.tab-content-card {
	position: relative;
	min-height: 400px;
	z-index: 1;
	border-radius: 1rem;
	overflow: hidden;
}

.tab-content-image-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding: 50px 28px 40px;
	opacity: 0;
	transition: all 0.3s linear;
}

.tab-content-card:hover .tab-content-image-layer {
	opacity: 1;
}

.tab-content-image-layer .media-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.tab-content-image-layer .media-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tab-content-content-layer {
	position: relative;
	height: 100%;
	border: 1px solid var(--gray);
	background: var(--lightGradient);
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
}

.tab-content-content-layer .sub-title {
	font-size: 1rem;
	line-height: 1.5rem;
	display: flex;
	margin-bottom: 20px;
}

.tab-content-content-layer .title {
	font-size: 24px;
	font-weight: 400;
	line-height: var(--lh-30);
}

.tab-content-content-layer .title strong,
.tab-content-content-layer .title b {
	font-weight: 700;
}

.tab-content-content-layer .card-link {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
}

.tab-content-content-layer .card-link .icon {
	display: flex;
}

.tab-content-image-layer .media-image::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--bodyText);
	opacity: 0.4;
}

.tab-content-image-layer .btn {
	margin-top: auto;
}

.tab-content-image-layer .desc {
	font-size: 24px;
	line-height: 1.25em;
	color: var(--white);
	font-weight: 400;
}

.tab-content-image-layer .desc strong,
.tab-content-image-layer .desc b {
	font-weight: 700;
}

.tab-content-image-layer .btn a {
	gap: 10px;
}

.tab-content-image-layer .btn a .icon {
	display: flex;
}

@media screen and (min-width: 135rem) {
	.priority-tab-wrap {
		grid-template-columns: 560px 1fr;
	}

	.tab-content-content-layer .sub-title {
		font-size: 22px;
		line-height: 2.25rem;
	}

	.priority-tab-wrap .left-block ul .priority-tab-item {
		font-size: 28px;
	}

	.tab-content-image-layer .desc,
	.tab-content-content-layer .title {
		font-size: 32px;
	}

	.tab-content-card {
		min-height: 495px;
	}

	.tab-content-image-layer .desc {
		line-height: 2.625rem;
	}
}

@media screen and (max-width: 991px) {
	.priority-tab-wrap {
		grid-template-columns: 1fr;
		grid-gap: 20px;
	}

	/* Show mobile label, hide UL by default */
	.selected-label {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		padding: 15px 20px;
		background: #FFF6F0;
		border: 1px solid var(--orange);
		border-radius: 8px;
		cursor: pointer;
		font-weight: 700;
		color: var(--orange);
		position: relative;
	}

	.selected-label::after {
		content: "";
		width: 10px;
		height: 10px;
		border-right: 2px solid var(--orange);
		border-bottom: 2px solid var(--orange);
		transform: rotate(45deg);
		margin-top: -5px;
		transition: transform 0.3s;
	}

	.priority-tab-wrap .left-block ul {
		display: none;
		background: #fff;
		border: 1px solid var(--border);
		border-radius: 8px;
		margin-top: 10px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.1);
		z-index: 10;
		position: absolute;
		width: 100%;
		left: 0;
	}

	.priority-tab-wrap .left-block {
		position: relative;
	}

	.priority-tab-wrap .left-block ul.active {
		display: flex;
		flex-direction: column;
	}

	.priority-tab-wrap .left-block ul .priority-tab-item {
		padding: 15px 20px;
		border-bottom: 1px solid var(--border);
		font-size: 18px;
		width: 100%;
	}

	.priority-tab-wrap .left-block ul .priority-tab-item:last-child {
		border-bottom: none;
	}

	.tab-content-inner {
		grid-template-columns: 1fr 1fr;
		max-width: 100%;
		gap: 20px;
	}
}