.technologies-gut-block {
	width: 100%;
	gap: 2.5rem;
	container: technologies / inline-size;
}

.technologies-gut-block .inner {
	display: flex;
	flex-direction: column;
}

.technologies-gut-block .block-content {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	width: 100vw;
	margin-left: calc((100vw - 100%) * -0.5);
	height: 600px;
}

.technologies-gut-block .block-content__item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 30px;
}

.technologies-gut-block .block-content__item.active {
	z-index: 1;
}

.technologies-gut-block .block-content__item-desc {
	width: min(100%, 930px);
	color: var(--white-color);
}

.technologies-gut-block .block-content__item-desc p {
	text-align: center;
}

.technologies-gut-block .block-content__item-bg {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.technologies-gut-block .block-content__item-bg::before,
.technologies-gut-block .block-content__item-bg::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 69.3333%;
	background: linear-gradient(0deg, #856373 6.73%, rgba(152, 114, 132, 0) 100%);
	opacity: 0.7;
	z-index: 1;
}
.technologies-gut-block .block-content__item-bg::after {
	mix-blend-mode: multiply;
}

.technologies-gut-block .block-content__item-bg .picture {
	height: 100%;
}

.technologies-gut-block .block-cards {
	display: flex;
	flex-wrap: wrap;
}
.technologies-gut-block .block-cards__item {
	width: 50%;
	padding: 12px;
}

.technologies-gut-block .block-cards__item-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.technologies-gut-block .block-cards__item svg {
	color: var(--white-color);
	scale: 0;
	transition: scale 0.3s ease-in-out;
	flex-shrink: 0;
}

.technologies-gut-block .block-cards__item h4 {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 150% */
	opacity: 0.6;
	text-align: center;
	margin-block: 0px;
}

.technologies-gut-block .block-cards__item.active {
	background: var(--rose-color);
	color: var(--white-color);
}
.technologies-gut-block .block-cards__item.active h4 {
	opacity: 1;
}
.technologies-gut-block .block-cards__item.active svg {
	scale: 1;
}

@media screen and (max-width: 767px) {
	.technologies-gut-block {
		margin-top: 40px;
		width: calc(100% + (100vw - 100%));
		margin-left: calc((100vw - 100%) * -0.5);
	}
	.technologies-gut-block .block-content {
		display: none;
	}
	.technologies-gut-block .block-cards {
		flex-direction: column;
		gap: 1.5rem;
	}
	.technologies-gut-block .block-cards__item {
		width: 100%;
		background: var(--rose-color);
		color: var(--white-color);
		padding-top: 0;
	}
	.technologies-gut-block .block-cards__item .picture {
		aspect-ratio: 16/9;
		width: calc(100% + 24px);
		margin-left: -12px;
	}
	.technologies-gut-block .block-cards__item h4 {
		opacity: 1;
		margin-block: 10px;
	}
	.technologies-gut-block .block-cards__item svg {
		scale: 1;
		/* display: none; */
	}
	.technologies-gut-block .block-cards__item-content {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
}
