.innerSections {}
.innerSections .innerSectionsTitle {
	color: #262626;
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	font-style: normal;
}
.innerSections .innerSectionsItems {
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
	gap: 15px;
}
.innerSections .innerSectionsItems .innerSectionsItem {
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	border: 1px solid #f3f3f3;
	border-radius: 8px;
	align-items: center;
	width: calc(17% - 17px);
	background: #fff;
}
.innerSections .innerSectionsItems .innerSectionsItem a {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.innerSections .innerSectionsItems .innerSectionsItem a img {
	width: 150px;
	height: 150px;
	object-fit: contain;
}
.innerSections .innerSectionsItems .innerSectionsItem a span {
	width: 100%;
	text-align: center;
	font-size: 13px;
	line-height: 17px;
	font-weight: 500;
	font-style: normal;
	margin-top: 15px;
}
@media screen and (max-width: 980px) {
	.innerSections .innerSectionsItems {
		gap: 0;
		flex-direction: column;
		background: #fff;
        border-radius: 4px;
        border: 1px #f3f3f3 solid;
	}
	.innerSections .innerSectionsItems .innerSectionsItem {
		padding: 10px 10px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		border: none;
		border-radius: 0px;
		align-items: center;
		width: 100%;
		border-bottom: 1px solid #f3f3f3;
		position: relative;
		background: #ffffff00;
	}
	.innerSections .innerSectionsItems .innerSectionsItem a {
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	.innerSections .innerSectionsItems .innerSectionsItem a img {
		width: 45px;
		height: 45px;
		object-fit: contain;
	}
	.innerSections .innerSectionsItems .innerSectionsItem a span {
		width: 100%;
		text-align: left;
		font-size: 13px;
		line-height: 17px;
		font-weight: 500;
		font-style: normal;
		margin-top: 0px;
		padding-left: 10px;
	}
	.innerSections .innerSectionsItems .innerSectionsItem::after {
		width: 11px;
		height: 7px;
		position: absolute;
		right: 15px;
		top: 30px;
		content: '';
		background: url("images/bottomMenu.svg") center center no-repeat;
		transform: rotate(90deg);
	}
}