.itemSideListItemsSection
{	
	margin-top: 3em;
}

.itemSideListItemsSection .sectionHeader .sectionHeaderCenteredContainer h2
{
}

.itemSideListItemsSection .sectionHeader
{
   padding-top: 2em;
}

.itemSideListItemsSection .itemSideListItems
{
	display: flex;
    flex-wrap: wrap;
	column-gap: 1em;
    row-gap: 1em;
	
	flex: 3;
	text-align: center;
	
	max-width: 1100px;
	margin: auto;
}

.itemSideListItemsSection .itemSideListItem
{
	flex: 1;
	
	display: flex;
	flex-direction: column;
	row-gap: 0.25em;
    align-items: center;
	justify-content: center;
	padding: 1em;
	border: 1px solid #0000001a;
	border-radius: 5px;
		
    cursor: pointer;    
    transition: box-shadow 0.25s ease-in-out;
}

.itemSideListItemsSection .itemSideListItem :empty
{
	display: none;
}

.itemSideListItemsSection .itemSideListItem:hover
{
	box-shadow: 0px 10px 17px -13px #1c3156;
	border: 1px solid #0000001a;
    z-index: 999;
}

.itemSideListItemsSection .itemSideListItem > h3
{
	font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Free Brands', 'Font Awesome 5 Free Solid';
    font-weight: 100;
    font-size: 4em;
    
	margin: 0;
}

.itemSideListItemsSection .itemSideListItem > h4
{
	font-size: 1.5em;
    font-weight: 100;
	text-transform: capitalize;
	
    margin: 0;	
}

.itemSideListItemsSection .itemSideListItem > p
{
	margin: 0;
}

@media (max-width: 900px)
{	
	.itemSideListItems
	{
		flex-direction: column;
	}
	
	.itemSideListItemsSection .sectionHeader
	{
	   padding-top: 1em;
	}
	
	.itemSideListItemsSection
	{	
		margin: 0em auto;
	}
}

@media (max-width: 500px)
{
	.itemSideListItemsSection .itemSideListItem > h4
	{
		font-size: 1em;
	}
	
	.itemSideListItemsSection .itemSideListItem > h3
	{
		font-size: 2em;
	}
	
	.itemSideListItemsSection .itemSideListItem > p
	{
		margin: 0;
		margin-top: 0.5em;
		font-size: 0.8em;
	}
}