.lists {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-evenly;
    background: rgb(81 88 153 / 55%);
    backdrop-filter: blur(5px);
    width: 100%;
    box-sizing: border-box;
    padding: 25px;
    margin: auto auto;
}

.lists_menu {
	width: 150px;
	background: var(--accentli);
	height: 100%;
	margin-top: 10px;
	box-sizing: border-box;
	padding: 5px;
}

.lists_menu-head {
	text-align: center;
	color: var(--dark);
	font-weight: bold;
	text-transform: uppercase;
}

.lists_content {
	width: calc(100% - 150px);
	height: 100%;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 10px;
}

.lists_content-bit {
	width: 100%;
	margin-top: 10px;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 10px;
}

.lists_content-block {
	position: relative;
	width: 32%;
	background: rgb(81 88 153 / 68%);
	max-height: 500px;
	overflow: auto;
	box-sizing: border-box;
	padding: 0px 20px;
padding-bottom: 7px;
}

.lists_content-description {
	width: 90%;
	background: var(--accentli);
	box-sizing: border-box;
	padding: 20px;
	margin-top: 10px;
}
	

.lists_content-block h2 {
	position: sticky;
	top: -1px;
	background: rgb(81 88 153 / 68%);
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-weight: 300;
	color:#f1ecec;
}