.wmx-query-no-parents {
    display: flex;
    justify-content: space-between;
	padding: 0 !important;
}
.wmx-query-no-parents li h3{
	text-align: center !important;
}
.wmx-child-links {
	width: 165px !important;

}
.wmx-query-no-parents li h3 a:hover, .wmx-query-no-parents li h3 a:focus{
	color: #2f373d;
}
.wmx-query-no-parents li:first-child{
	animation-name: backInLeft;
}
.wmx-query-no-parents li:nth-child(2){
	animation-name: backInUp;
}
.wmx-query-no-parents li:last-child{
	animation-name: backInRight;
}
@keyframes backInUp{
0% {
    opacity: .7;
    transform: translateY(1200px) scale(.7);
}
80% {
    opacity: .7;
    transform: translateY(0) scale(.7);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
@keyframes backInLeft{
0% {
    opacity: .7;
    transform: translateX(-2000px) scale(.7);
}
80% {
    opacity: .7;
    transform: translateX(0) scale(.7);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
@keyframes backInRight{
0% {
    opacity: .7;
    transform: translateX(2000px) scale(.7);
}
80% {
    opacity: .7;
    transform: translateX(0) scale(.7);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
@media screen and (max-width: 1366px){
	.wmx-query-no-parents li{
		text-align: center !important;
	}
	.wmx-query-no-parents li h3{
		font-size: 26px !important;
	}
}
@media screen and (max-width: 780px){
	.wmx-query-no-parents {
		flex-direction: column;
		align-items: center;
	}
	
.wmx-query-no-parents li{
	width: 100% !important;
	}
}