.logo-img{
	max-height: 90%;
	max-width: 100%;
	margin: 10px;
}

.logo-img-wrapper {
	height: 100%; 
	display: flex;
	flex-direction: row;
	align-items: center ;

}

.logo-text-by-img{
	margin-left: 70px;
}

        
ol {
	counter-reset: li; 
	list-style: none; 
	padding: 0;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
  }
  
  ol a {
	position: relative;
	display: block;
	padding: .4em .4em .4em 2em;
	margin: .5em 0;
	background: #32414C;;
	color: white;
	text-decoration: none;
	border-radius: .3em;
	transition: .3s ease-out;
  }
  
  ol a:hover { background: #7b818c; }
  ol a:hover:before { transform: rotate(360deg); }
  ol a:before {
	content: counter(li, lower-alpha);
	counter-increment: li;
	position: absolute;
	left: -1.3em;
	top: 50%;
	margin-top: -1.3em;
	background: #3c89b4;
	height: 2em;
	width: 2em;
	line-height: 2em;
	border: .3em solid #fff;
	text-align: center;
	font-weight: bold;
	border-radius: 2em;
	transition: all .3s ease-out;
  }
	  