/* Scroll Menu */

#menuScroll{
	background-color: #e2e2e2;
	width: 100%;
	height: 3px;
	border-radius: 1.5px;	
	
}
#menuScroll:after{
	content: "";
	width: 33.3333%;	
	height: 3px;
	background-color: #424242;
	position: absolute;
	border-radius: 1.5px;
	-webkit-transition: margin .5s; /* Safari */
    transition: margin .5s;
}
#menuScroll.secondScroll:after{
	margin-left: 0%
}
#menuScroll.firstScroll:after{
	margin-left: 33.33333333%
}
#menuScroll.thirdScroll:after{
	margin-left: 66.66666666%
}




/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.3333333%;
}

.rowScroll{
	margin: 0px
}
/* Clear floats after the columns */
.rowScroll:after {
    content: "";
    display: table;
    clear: both;
}

.scrollItem{
	font-family: Gotham_Medium;
	color: #b7b7b7;
	text-align: center;
/*	font-size: 13px;  */
	-webkit-transition: color .5s; /* Safari */
    transition: color .5s;
	letter-spacing: 1px
}
.scrollItem:hover{
	color: #878787;
}
.active .scrollItem{
	color: #424242;
}

.scrollItem::-moz-selection{
  background: transparent; /* WebKit/Blink Browsers */
}
.scrollItem::selection{
  background: transparent; /* WebKit/Blink Browsers */
}

.pAbout.disable{
	opacity: 0
}

.pAbout{
	-webkit-transition: all .6s; /* Safari */
    transition: all .6s;
}