/* *******************************************************
 * filename : main.css
******************************************************** */


/* ******************left nav ********************* */
#fp-nav.right.right {
	width: 100px;
	height: 100%;
	right: 0;
	top: 0;
	box-sizing: border-box;
	padding: 85px 0 0;
}

#fp-nav.right .fp-menu-wr {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	border-left: 1px solid rgba(221,221,221, .5);
	transition: all .3s ease
}

#fp-nav.right ul {
	display: block;
	position: absolute;
	width: 32px;
	margin-left: 16px;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%)
}

#fp-nav.right ul li {
	display: block;
}

#fp-nav.right ul li a {
	display: block;
	position: relative;
	background-color: #CCCCCC;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	margin-bottom: 36px;
	transition: all .3s ease;
}
#fp-nav.right ul li a:after{
	content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    opacity: 0;
    transition: .6s all;
}
#fp-nav.right ul li a span {
	display: none;
	font-size: 0;
}



#fp-nav ul li .fp-tooltip {
	display: none;
}

#fp-nav.right ul li a.active, .fp-slidesNav ul li a.active {
	background-color: #fff
}


#fp-nav.right ul li a.active span {
	display: block;
	padding: 0px 0 0 30px
}

#fp-nav.right ul li a.active:after {
opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


#fp-nav.grey ul li a.active {
	background-color: #999;
}
#fp-nav.grey ul li a.active:after {
	border-color: #999;
}

#fp-nav ul li:nth-child(n+6) {
	display: none;
}
.scroll-pic {
	position: absolute;
	width: 16px;
	height: 30px;
	left: 50%;
	margin-left: 6px;
	transform: translateX(-50%);
	bottom: 50px;
}
.scroll-pic .indicator {
	position: relative;
	width: 16px;
	height: 30px;
	border-radius: 8px;
	border: 2px solid #fff;
}
.scroll-pic .indicator:after {
content: "";
position: absolute;
width: 2px;
height: 5px;
left: 50%;
top: 5%;
transform: translate(-50%,0);
background-color: #fff;
	animation: indicatorAni 5s infinite;
}
.grey .scroll-pic .indicator {
	border-color: #666666;
}
.grey .scroll-pic .indicator:after {
	background-color:  #666666;
}
.fp-viewing-5 #fp-nav{
	display: none !important;
}
 #fp-nav.grey .fp-menu-wr {
border-left: 1px solid rgba(255,255,255, .2);
 }

@keyframes indicatorAni {
  from {
    top: 5%;
  }

  to {
   top: 35%;
  }
}


@media (max-width:1200px) {
#fp-nav.right.right {
	width: 80px;
}


}

@media (max-width:900px) {
#fp-nav.right.right {
	width: 40px;
}
#fp-nav.right ul li a::after {
    width: 22px;
    height: 22px;
}

}

@media (max-width:767px) {
#fp-nav.right .fp-menu-wr {
	border-left: none;
}


}
