#symbols ul {
	position: absolute;
	bottom: 50px;
	z-index: 3;
	width: 100%;

	display: flex;
	justify-content: center
}

#symbols img {
	width: 100px;
	margin: 0px 50px;
	cursor: pointer;
}

#symbols li a {
	display: flex;
	justify-content: center;
}

@media (max-width: 700px) {

	#symbols ul {
		top: 10%;
		height: 80%;
		bottom: auto;
		flex-wrap: wrap;
		flex-direction: column;
	}

	#symbols li {
		width: 50%;
		height: 33.33%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#symbols img {
		width: 100px;
	}
}