#practice_main_manu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
}

/*    #practice_main_List {
    list-style: none;
    padding: 0;
    position: fixed;
    padding-top: 40px;
		 height: 100vh;
		 width: 500px;
    } */
#practice_main_List li {
	margin-bottom: 16px;
}

#practice_main_List {
	list-style: none !important;
	height: 100vh;
	overflow-y: scroll;
	padding-bottom: 130px;
} 
ul#practice_main_List::-webkit-scrollbar {
    display: none;
}

#practice_main_List li  a {
color: rgba(0, 0, 0, 1);

/* font-family: var(--font-oswald); */
font-size: var(--size-h6, 32px);
font-style: normal;
font-weight: 500;
line-height: 100%; /* 32px */
letter-spacing: -1.28px;
	transition: all 0.5s ease-in-out;
	text-transform: capitalize;
}

#images-main-container img {
	opacity: 0.32;
}
#images-main-container img.active {
	opacity: 1;
}

#practice_main_List li a:hover {
    color: #00AAD8;
    padding-left: 16px;
}
.menu-link__wrapper:hover::before {
    opacity: 1;
}
.menu-link__wrapper  {
  position: relative;
}
.menu-link__wrapper::before {
	position: absolute;
	top: 8px;
	content: '';
	background: url(/wp-content/uploads/2026/01/icon-button-arrow-right.png);
	background-size: contain;
	background-repeat: no-repeat;
	height: 24px;
	width: 24px;
	opacity: 0;
	left: -8px;
	transition: opacity 0.5s ease-in-out;
}