
body
{
	font-family: "Lato", Arial, sans-serif;
	margin: 0px;
	transition: 0.5 s;
}

nav 
{
	font-size: 1.2em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 30px;
	top: 0px;
	height: 10vh;
	width: 100%;
	background: #EDEDED;
	transition: 0.2s;
	box-shadow: 0px 1px 20px #bbb;
	position: fixed;
	z-index: 10000;
}

.logo
{
	color: Gray;
	animation-name: wel;
	animation-duration: 4s;
	position: relative;
	width: 60%;
}

@keyframes wel 
{
  0%   {left:-100%;}
  25%  {left:6%;}
  50%  {left:3%;}
  75%  {left:6%;}
  100%  {left:0%;}
}

nav .links 
{
	display: flex;
	width: 35%;
}

.links a
{
	padding: 10px;
	text-decoration: none;
	color: #333399;
}

#mobile-menu-btn 
{
  display: none;
}

.mobile-menu 
{
	background: #E0E0E0;
	display: none;
	position: absolute;
	right: 0;
	box-shadow: 0px 1px 10px #ccc;
	font-size: 1.1em;
	border-radius: 0px 15px;
	position: fixed;
	top: 10vh;
	z-index: 10000;
}

@media (max-width: 600px) 
{
  #mobile-menu-btn 
  {
    display: block;
  }
  nav a 
  {
    display: none;
  }
  .mobile-menu 
  {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .mobile-menu a
  {
    padding: 10px 20px;
	text-decoration: none;
	color: #333399;
  }
}

.container
{
	margin: 4%;
	margin-top: 14vh;
}

.publist
{
	margin:2%;
}

.publist ol
{
	counter-reset: li;
	list-style: none;
	font-size: 1em;
	padding: 0;
	margin-bottom: 4em;
}

.publist a
{
	position: relative;
	display: block;
	padding: .4em .4em .4em 2em;
	margin: .5em 0;
	background: #03B3CB;
	color: #eee;
	text-decoration: none;
	-moz-border-radius: .3em;
	-webkit-border-radius: .3em;
	border-radius: 1.5em;
	transition: all .2s ease-in-out;
}

.publist a:hover
{
	background: #5975D9;
	text-decoration:none;
	transform: scale(1.01);
	border-radius: 1.5em;
}

.publist a:before
{
	content: counter(li);
	counter-increment: li;
	position: absolute;
	left: -1.3em;
	top: 50%;
	margin-top: -1.3em;
	background:#03B3CB;
	height: 2em;
	width: 2em;
	line-height: 2em;
	border: .3em solid #fff;
	text-align: center;
	font-weight: bold;
	-moz-border-radius: 2em;
	-webkit-border-radius: 2em;
	border-radius: 2em;
	color:#FFF;
}

footer
{
	background: #666;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	font-size: 1em;
	padding:1em;
	padding-bottom: 2em;
}

.footerleft
{
    display: inline-block;
	width: 25%;
}

.footer-company-name
{
	color:  lightseagreen;
	font-size: 0.9em;
	font-weight: normal;
}

.footercenter
{
	width: 48%;
	display: inline-block;
	vertical-align: top;
}

.footercenter i
{
	background-color:  #33383b;
	color: #ffffff;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	text-align: center;
	line-height: 2em;
	vertical-align: middle;
}

.footercenter p
{
	display: inline-block;
	color: #ffffff;
}

.footercenter p a
{
	color:  lightseagreen;
	text-decoration: none;
}

.footerright
{
	width: 25%;
	display: inline-block;
	vertical-align: top;
	text-align: right;
}

.footer-company-about
{
	line-height: 2emx;
	color:  #92999f;
	font-size: 1em;
}

.footer-icons a
{
	display: inline-block;
	width: 2em;
	height: 2em;
	cursor: pointer;
	background-color:  #33383b;
	border-radius: 0.2em;
	font-size: 1em;
	color: #ffffff;
	text-align: center;
	line-height: 2em;
}

@media (max-width: 880px) 
{

	footer
	{
		font-size: 0.4em;
	}

	.footerleft, .footercenter, .footerright
	{
		display: block;
		width: 100%;
		text-align: center;
	}

	.footercenter i
	{
		margin-left: 0;
	}

}
