/* ===========================================================
 * pagepiling.js 0.0.1 (Beta)
 *
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 *
 * ========================================================== */

.pp-section {
    height:100%;
    position:absolute;
    width:100%;
}
@media screen and (max-width: 1199px){
	.pp-section {
		position:relative;
	}
}
.pp-easing {
    -webkit-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
}
#pp-nav {
    position: fixed;
    z-index: 100;
    background-color: rgba(0,0,0,0);
    width:30px;
    padding: 10px 0 15px 0px;
    margin-top: -32px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    top: 50%;
    opacity: 1;
}
#pp-nav.right {
    right: 17px;
}
#pp-nav.left {
    left: 17px;
}

.pp-tableCell {
    width: 100%;
    height: 100%;
}
.pp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.pp-slidesNav.bottom {
    bottom: 17px;
}
.pp-slidesNav.top {
    top: 17px;
}
#pp-nav ul,
.pp-slidesNav ul {
    margin: 0;
    padding: 0;
}
#pp-nav li,
.pp-slidesNav li {
    display: block;
    width: 14px;
    height: 24px;
    margin: 12px 7px 12px 7px !important;
    position:relative;
}
.pp-slidesNav li {
    display: inline-block;
}
#pp-nav li a,
.pp-slidesNav li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 26px;
    height: 26px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 50%;
	border: solid 1px  rgba(147,123,106,0);
	transition: all 0.3s ease-out;
}
#pp-nav li a.active ,
.pp-slidesNav a.active {
	border: solid 1px  rgb(51 166 221 / 40%) !important;
	transition: all 0.3s ease-out;
}
#pp-nav span,
.pp-slidesNav span {
    top: 9px;
    left: 9px;
    width: 6px;
    height: 6px;
    box-shadow: inset 0 0 0 7px #e1e1e1;
    background: rgba(0, 0, 0, 0);
    border: none;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
}
#pp-nav span:hover, .pp-slidesNav span {
    box-shadow: inset 0 0 0 7px #443521;
}
.pp-tooltip {
    position: absolute;
    top: -2px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    white-space: nowrap;
    max-width: 220px;
}
.pp-tooltip:focus{
    display: none;
}
.pp-tooltip.right {
    right: 30px;
}
.pp-tooltip.left {
    left: 20px;
}