.bi-systems-advantages__wrapper{
	display: flex;
	flex-direction: column;
	margin-top:30px;
	margin-bottom: 61px;
}

.bi-systems-advantages__sections{
	display: flex;
	flex-direction: row;
	gap:30px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.bi-systems-advantages__sections-item{
	display: flex;
	align-items: center;
	padding: 20px;
	border-radius: 10px;
	background-color: rgba(245, 245, 249, 1);
	color: var(--bi-systems__header-color);
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: box-shadow 0.2s ease-in-out, transform 0.5s ease-in-out;
}
.bi-systems-advantages__sections-item:not(.active-section):hover{
	box-shadow: 5px 10px 10px -10px rgba(0, 0, 0, 0.25);
	transform: translateY(-5px);
}

.bi-systems-advantages__items-groups{
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.bi-systems-advantages__item-group{
	display: none;
	opacity: 0;
	grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
	flex-direction: row;
	gap: 30px;
	transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
	min-height: 160px;
}

.bi-systems-advantages__item{
	padding:18px 20px 18px 20px;
	background-color: rgb(237 237 237);
	color: var(--bi-systems__header-color);
	border-radius: 10px;
	box-shadow: 0px 30px 30px -18px rgba(0, 0, 0, 0.25);
}

.bi-systems-advantages__item-title{
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 10px;
}
.bi-systems-advantages__item-description{
	padding: 20px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 1);
	font-size: 18px;
	font-weight: 600;

}
.active-section{
	background-color: rgba(255, 140, 41, 1);
	color: #ffffff;
	box-shadow: 0 14px 10px -6px rgba(255, 140, 41, 0.4)!important;
}

.active-group{
	opacity: 1;
	display: grid;
}

@media (max-width: 1100px){
	.bi-systems-advantages__sections-item{font-size: 18px;}
	.bi-systems-advantages__item-title{font-size: 20px;}
	.bi-systems-advantages__item-description{font-size: 18px;}
}

@media (max-width: 640px){
	.bi-systems-advantages__sections-item{font-size: 14px;}
	.bi-systems-advantages__item-title{font-size: 16px;}
	.bi-systems-advantages__item-description{font-size: 14px;}
	.bi-systems-advantages__sections{gap:10px;margin-bottom:20px;}
	.bi-systems-advantages__item{box-shadow: 0px 20px 10px -18px rgba(0, 0, 0, 0.25);}

	.bi-systems-advantages__item-group
	{
		gap:20px;
		justify-content: center;
		min-height: auto;
		grid-template-columns: 1fr;
	}
}