.title {
	display: grid;
	grid-template-columns: 40% 60%;
	align-items: center;
}
#container-elements-list {
	width: calc(100% - 100px);
	height: auto;
	padding-bottom: 40px;
	margin: 10px 50px 10px 50px;
}
.content .advanced-text  h3 {
	margin-top: 5px;
	margin-bottom: 5px;
}
.advanced-item .advanced-text {
	display: block;
	position: relative;
	height: 100%;
	box-sizing: border-box;
	padding: 10px 20px;
	text-decoration: none;
	color: #1f1f1f;
	grid-template-columns: 40% 60%;
}
.title_gradient p::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url(/upload/gradient2.svg);
	width: calc(100% + 1.2rem);
	height: calc(100% + 0.75rem);
	background-size: cover;
	background-position: center;
	z-index: -1;
	border-radius: 25px;
}

.title_gradient img {
	width: 3.5rem;
}
.content .title_gradient p {
	position: relative;
	display: inline-block;
	z-index: 1;
	color: #fff;
	font-weight: 600;
	padding: 0.75rem 3rem;
}
.title_gradient {
	gap: 2rem;
}
.before-colon, .advanced-items .title_text span { color: #71B739; }
.content_text {
	display: flex;
	flex-direction: column;
}
.elements-list {
	display: flex;
	grid-auto-flow: column;
	overflow: hidden;
	gap: 2.5rem;
	padding: 3rem 1rem;
	position: relative;
	grid-template-columns: repeat(3, 31%);
}
/*.elements-list {
	display: flex;
	overflow: hidden;
	gap: 3rem;
	padding: 3rem 2rem;
	position: relative;
}*/
.content .advanced-items .title_text {
	color: var(--color__text-2);
	font-size: 2em;
	line-height: 1.2;
	font-weight: bold;
	margin-top: 35px;
	margin-bottom: 30px;
	width: 60%;
}
.advanced-item {
	display: block;
	position: relative;
	box-shadow: -3px 0px 1rem var(--color__gray-2);
	transition: 0.2s;
	border-radius: 25px;
}
.advanced-item img {
	border-radius: 25px 25px 0 0;
	display: block;
	width: 100%;
}

.image-wrapper {
	position: relative;
	display: block; /* Чтобы размеры соответствовали изображению */

}
.image-wrapper::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px; /* толщина "бордера" */
	background: linear-gradient(
			90deg,
			rgba(128, 188, 0, 1) 0%,
			rgba(84, 192, 232, 1) 48%,
			rgba(0, 113, 206, 1) 100%
	);
}


.advanced-items .swiper-wrapper {
	padding: 2rem;
}
/* кнопки*/
.elements-list .slider-button-next {
	margin-right: -27px;
	background: url(/images/arrow-grey.svg) center center no-repeat;
	background-size: 35px;
	content: "";
	height: 50px;
	width: 60px;
	outline: none !important;
	right: 10px;
	left: auto;
	position: absolute;
	top: 50%;
	margin-top: calc(-1* var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.elements-list .slider-button-prev {
	margin-left: -25px;
	background: url(/images/arrow-grey.svg) center center no-repeat;
	background-size: 35px;
	outline: none !important;
	content: "";
	height: 50px;
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	width: 60px;
	left: 10px;
	right: auto;
	position: absolute;
	top: 50%;
	margin-top: calc(-1* var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.elements-list .swiper-wrapper {
	display: grid;
	grid-auto-flow: column;
height: max-content;
	padding: 0 1rem;
	position: relative;
}
@media (orientation: portrait) {
	.title {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.title .content__btn {
			display: flex;
		flex-direction: column;
		align-items: center;
	}
	.content .advanced-items .title_text {
		width: 100%;
	}
	.elements-list .swiper-wrapper {
		padding: 0;
	}
	.advanced-item {
		box-shadow: none;
	}
	.advanced-item-slide {
		margin: 1rem 1.2rem;
		box-shadow: -3px 0px 1rem var(--color__gray-2);
		border-radius: 25px;
	}
	.title .with-blue-arrow {
		margin-left: -12px;
	}
	.title_gradient img {
		width: 2.5rem;
	}
	.content .title_gradient p {
		padding: 0.75rem 1.5rem;
	}
	#container-elements-list {
		width: 100%;
		height: auto;
padding-bottom: 0;
 margin: 0;
}
	.elements-list{
		padding: 0 1rem;
	}
}