/*!
* fullPage 3.0.9
* https://github.com/alvarotrigo/fullPage.js
*
* @license GPLv3 for open source use only
* or Fullpage Commercial License for commercial use
* http://alvarotrigo.com/fullPage/pricing/
*
* Copyright (C) 2018 http://alvarotrigo.com/fullPage - 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 */
    -moz-box-sizing: border-box;
    /* <=28 */
    box-sizing: border-box;
}

.fp-slide {
    float: left;
}

.fp-slide,
.fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}

.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-controlArrow {
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}

.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;    
    opacity: 1;  
    transition: all 0.4s;
}

#fp-nav.fp-right {
    right: 17px;
    bottom: 17px;
}

#fp-nav.fp-left {
    left: 30px;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0 !important;
    right: 0;
    margin: 0 auto !important;
}

.fp-slidesNav.fp-bottom {
    bottom: 17px;
}

.fp-slidesNav.fp-top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 15px;
    position: relative;
}

.fp-slidesNav ul li {
    display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background-color: #005aaf;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    display: none;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 8px;
    width: 8px;
    background-color: #bfbfbf;
    left: 50%;
    top: 50%;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    width: 8px;
    height: 8px;
    background-color: #fff;
}

#fp-nav ul li .fp-tooltip {
    position: fixed;
    right: 17px;
    bottom: 17px;
    color: #262626;
    font-size: 2rem;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    height: 120px;
    cursor: pointer;
    font-weight: 600;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav ul li .fp-tooltip.fp-right {
    right: 80px;
    bottom: 80px;
}

#fp-nav ul li .fp-tooltip.fp-right::before{content: ''; width: 40px; height: 3px; background: #262626; display: block; position: absolute; top: 50px;}
#fp-nav ul li .fp-tooltip.fp-right::after{content: '06'; font-size: 2rem; font-family: 'Raleway', sans-serif; color: #262626; display: block; position: relative; bottom: -20px;}

#fp-nav ul li .fp-tooltip.fp-left {
    left: 20px;
}

.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;
}

/*Only display content to screen readers*/
.fp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


#menu li {
    display: block;
    margin: 15px 0px;
    color: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    text-align: left;
    text-transform: uppercase; 
    transform: skewX(-0.3deg);
    letter-spacing: 1px;
    position: relative;
    font-size: 13px;
    letter-spacing: -0.3px;
}

#menu li a {
  position: relative;
  opacity: 0;
  width: inherit;
  z-index: 99;
  text-align: center;
}

#menu li::before {
    content: "";
    background-color: #fff;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 5.5%;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    transition: all 0.4s;
    opacity: 1;
}
#menu li::after {
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: all 0.4s;
  opacity: 0;
}


#menu li.active {
    font-weight: bold;
    color: #fff;
    position: relative;
    opacity: 1;
}

#menu li.active::before, 
#menu li.active::after {
    opacity: 1;
}
#menu li:hover::before {
  background-color: #fa5a37;
}
#menu li:hover::after {
  border: 1px solid #fa5a37;
}

#menu li a {
    text-decoration: none;
    color: #fff;
}
#menu li a:hover {
  color: #fa5a37;
}

#menu li.active a:hover {
    color: #fa5a37;
}



#menu li a,
#menu li.active a {
    padding: 9px 10px;
    display: block;
    transition: all 0.4s;
}

#menu li.active a {
    color: #fff;
    opacity: 1;
}

#menu {
    position: fixed;
    top: 50%;
    left: 2%;
    z-index: 70;
    width: 100%;
    max-width: 160px;
    padding: 0;
    margin: 0;
    transform: translateY(-50%);
    transition: all 0.4s;
    opacity: 1;
}


.fp-viewing-INTRO #fp-nav {opacity: 0;}
.fp-viewing-FOOTER #fp-nav {opacity: 0;}
.fp-viewing-Main04 #menu li.active a {color: #262626;}
.fp-viewing-Main04 #menu li.active::before {background: #262626;} 
.fp-viewing-Main04 #menu li.active::after {border: 1px solid #262626;}


#fp-nav ul li:nth-child(1) .fp-tooltip{color: #fff;}
#fp-nav ul li:nth-child(1) .fp-tooltip.fp-right::after{color: #fff;}
#fp-nav ul li:nth-child(1) .fp-tooltip.fp-right::before{background: #fff;}
#fp-nav ul li:last-child, .fp-slidesNav ul li:last-child {display: none}



@media screen and (max-width: 780px) {    
    
    
    
    #fp-nav.fp-left { left: 0px;  bottom: 5px;  top: auto;  transform: none;}
    
    .fp-viewing-INTRO #fp-nav { pointer-events: none;}
    .fp-viewing-FOOTER #fp-nav {pointer-events: none;}
    
    #fp-nav ul li, .fp-slidesNav ul li {  margin: 8px;}
    
    
}