/*How to stained glass styels - Andrea Farnsworth - andreafarnsworth.com*/


/*--------------------------- GENERAL STYLES ----------------*/
body{
	background: #FFFDF1;
}
p{
	color:#022204F;
}

/*----------Back to top button--------*/
.top-link {
  	transition: all .25s ease-in-out;
  	position: fixed;
  	bottom: 0;
  	right: 0;
  	display: inline-flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	margin: 0 0.5em 0.5em 0;
	padding: .25em;
	width: 55px;
	height: 55px;
	z-index:1;
}
  
.top-link.show {
    visibility: visible;
    opacity: 1;
  }
  
.top-link.hide {
    visibility: hidden;
    opacity: 0;
}

svg {
	fill: #000;
	width: 24px;
	height: 12px;
}

svg:hover {
		background-color: #E8E8E8;
}

svg {
	fill: #000000;
}
/*end back to top button*/

/*---------------------------- NAVIGATION --------------------*/
.menu-nav li {
	list-style: none;
}
.menu-list{
	border-right:1px solid #eee;
}