/*!
 * fullPage 2.9.7
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */

html.fp-enabled, .fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    /* Safari<=5 Android<=3 */
    /* <=28 */
    box-sizing: border-box;
}

.fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.fp-slidesContainer {
    float: left;
    position: relative;
}

.fp-scrollable {
    overflow: hidden;
    position: relative;
}

.fp-scroller {
    overflow: hidden;
}

.iScrollIndicator {
    border: 0 !important;
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
}

#fp-nav.right {
    right: 56px;
}

#fp-nav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li {
    position: relative;
    display: block;
}

#fp-nav ul li+li {
    padding-top: 58px;
}

#fp-nav ul li+li:before {
    content: "";
    position: absolute;
    top: -1px;
    width: 3px;
    height: 60px;
    left: 0;
    right: 0;
    margin: auto;
    background: #1b27bd;
}

#fp-nav ul li a {
    width: 21px;
    height: 21px;
    border: 2px solid #1b27bd;
    border-radius: 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span, #fp-nav ul li a:hover span {
    display: block;
    height: 13px;
    width: 13px;
    border-radius: 100%;
    background: #1b27bd;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fp-auto-height.fp-section, .fp-auto-height .fp-slide, .fp-auto-height .fp-tableCell {
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section, .fp-responsive .fp-auto-height-responsive .fp-slide, .fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}

.fp-tooltip {
    position: absolute;
    top:45px;
    right: 25px;
    color: #1b27bd !important;
    font-size: 14px;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}
#fp-nav ul li:first-child .fp-tooltip{
    top: 0;
}
#fp-nav ul li:hover .fp-tooltip{
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
/* animation scroller */

.white-cl-scrol ul li+li:before {
    background: White !important;
}

.white-cl-scrol ul li a {
    border: 2px solid white !important;
}

.white-cl-scrol ul li a.active span, .white-cl-scrol ul li a:hover span {
    background: white !important;
}
.white-cl-scrol .fp-tooltip{
    color: white !important;
}