.rtech-itd {
	--rtech-itd-outer: #ffffff;
	--rtech-itd-panel: #f8f5ff;
	--rtech-itd-accent: #8b48e8;
	--rtech-itd-title: #10111a;
	--rtech-itd-text: #2d2c36;
	--rtech-itd-icon: #8b48e8;
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
	box-sizing: border-box;
	padding: 72px 24px;
	background: var(--rtech-itd-outer);
	overflow: hidden;
}

.rtech-itd *,
.rtech-itd *::before,
.rtech-itd *::after {
	box-sizing: border-box;
}

.rtech-itd__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	width: 100%;
	max-width: 1320px;
	min-height: 460px;
	margin: 0 auto;
	background: var(--rtech-itd-panel);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(24, 19, 49, .08);
}

.rtech-itd__image {
	min-width: 0;
	min-height: 100%;
	background: #e8e8ea;
}

.rtech-itd__image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center center;
}

.rtech-itd__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 56px 58px;
	background:
		radial-gradient(circle at 90% 12%, rgba(139, 72, 232, .09), transparent 38%),
		var(--rtech-itd-panel);
}

.rtech-itd__eyebrow {
	margin: 0 0 13px;
	color: var(--rtech-itd-accent);
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: .105em;
	text-transform: uppercase;
}

.rtech-itd__heading {
	margin: 0;
	color: var(--rtech-itd-title);
	font-family: inherit;
	font-size: clamp(34px, 3vw, 51px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -.035em;
}

.rtech-itd__list {
	display: grid;
	gap: 16px;
	margin: 29px 0 0;
	padding: 0;
	list-style: none;
}

.rtech-itd__item {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0;
	padding: 0;
	color: var(--rtech-itd-text);
	font-family: inherit;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.45;
}

.rtech-itd__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	color: var(--rtech-itd-icon);
	font-size: 20px;
	line-height: 1;
}

.rtech-itd__icon i,
.rtech-itd__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

@media (max-width: 1024px) {
	.rtech-itd {
		padding: 56px 20px;
	}

	.rtech-itd__inner {
		grid-template-columns: .9fr 1.1fr;
	}

	.rtech-itd__content {
		padding: 45px 38px;
	}

	.rtech-itd__heading {
		font-size: clamp(32px, 4vw, 43px);
	}
}

@media (max-width: 767px) {
	.rtech-itd {
		padding: 40px 16px;
	}

	.rtech-itd__inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.rtech-itd__image {
		min-height: 290px;
		aspect-ratio: 4 / 3;
	}

	.rtech-itd__content {
		padding: 38px 26px 42px;
	}

	.rtech-itd__eyebrow {
		font-size: 12px;
	}

	.rtech-itd__heading {
		font-size: clamp(30px, 9vw, 39px);
	}

	.rtech-itd__heading br {
		display: none;
	}

	.rtech-itd__item {
		align-items: flex-start;
		font-size: 16px;
	}
}

@media (max-width: 420px) {
	.rtech-itd__image {
		min-height: 245px;
	}

	.rtech-itd__content {
		padding-right: 22px;
		padding-left: 22px;
	}
}
