@keyframes icon_appear {
    0% {
        transform: scale(0.5);
        opacity: 0.1
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.wp-block-ilb-icon-list .ilbIconList ul.lists li:not(:last-child) {
	margin-bottom: 25px;	
}

.ilbIconList li.list .icon {
		animation: icon_appear 1s 1 cubic-bezier(0.175,0.885,0.320,1.275);
}

@media (max-width: 599px) {
		#navbar-main .wp-block-site-title {
				display: none;
		}
}