/*!
 * 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
{
    overflow: hidden;

    margin: 0;
    padding: 0;
    /*Avoid flicker on slides transitions for mobile phones #336 */

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fp-section
{
    position: relative;
    /* Safari<=5 Android<=3 */
    /* <=28 */

    box-sizing: border-box;
}

.fp-slide
{
    float: left;
}

.fp-slide,
.fp-slidesContainer
{
    display: block; 

    height: 100%;
}

.fp-slides
{
    position: relative;
    z-index: 1;

    overflow: hidden;

    height: 100%;
    /* Safari<=6 Android<=4.3 */

    transition: all .3s ease-out;
}

.fp-section.fp-table,
.fp-slide.fp-table
{
    display: table;

    width: 100%; 

    table-layout: fixed;
}

.fp-tableCell
{
    display: table-cell;

    width: 100%;
    height: 100%; 

    vertical-align: middle;
}

.fp-slidesContainer
{
    position: relative; 

    float: left;
}

.fp-controlArrow
{
    /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;

    width: 0;
    height: 0;
    margin-top: -38px;

    cursor: pointer;
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
       -moz-user-select: none;
    /* webkit (konqueror) browsers */
        -ms-user-select: none;
    transform: translate3d(0, 0, 0); 

    border-style: solid;
    /* mozilla browsers */

     -khtml-user-select: none;
}

.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
{
    position: relative; 

    overflow: hidden;
}

.fp-scroller
{
    overflow: hidden;
}

.iScrollIndicator
{
    border: 0 !important;
}

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

#fp-nav
{
    position: fixed;
    z-index: 100;
    top: 50%;

    -webkit-transform: translate3d(0, -50%, 0); 
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);

    opacity: 1;
}

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

#fp-nav.fp-left
{
    left: 17px;
}

.fp-slidesNav
{
    position: absolute;
    z-index: 4;
    right: 0;
    left: 0 !important;

    margin: 0 auto !important; 

    transform: translate3d(0, 0, 0);

    opacity: 1;
}

.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
{
    position: relative; 

    display: block;

    width: 14px;
    height: 13px;
    margin: 7px;
}

.fp-slidesNav ul li
{
    display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a
{
    position: relative;
    z-index: 1;

    display: block;

    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
{
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;

    border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span
{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;

    width: 4px;
    height: 4px;
    margin: -2px 0 0 -2px;

    transition: all .1s ease-in-out; 

    border: 0;
    border-radius: 50%;
    background: #333;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span
{
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
}

#fp-nav ul li .fp-tooltip
{
    font-family: arial, helvetica, sans-serif;
    font-size: 14px;

    position: absolute;
    top: -2px;

    display: block;
    overflow: hidden;

    width: 0;
    max-width: 220px;

    cursor: pointer; 
    white-space: nowrap;

    opacity: 0;
    color: #fff;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip
{
    width: auto;

    transition: opacity .2s ease-in;

    opacity: 1;
}

#fp-nav ul li .fp-tooltip.fp-right
{
    right: 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;
}

@media only screen and (max-width: 767px) and (orientation: landscape)
{
    .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;
    }
}

.frontpage.fp-responsive .fp-auto-height-responsive.fp-section,
.frontpage.fp-responsive .fp-auto-height-responsive .fp-slide,
.frontpage.fp-responsive .fp-auto-height-responsive .fp-tableCell,
.quizpage_answers.fp-responsive .fp-auto-height-responsive.fp-section,
.quizpage_answers.fp-responsive .fp-auto-height-responsive .fp-slide,
.quizpage_answers.fp-responsive .fp-auto-height-responsive .fp-tableCell
{
    height: auto !important;
    min-height: 55vw;
}

.frontpage.fp-responsive .fp-auto-height-responsive#footer,
.frontpage.fp-responsive .fp-auto-height-responsive#footer .fp-tableCell,
.quizpage_answers.fp-responsive .fp-auto-height-responsive#footer,
.quizpage_answers.fp-responsive .fp-auto-height-responsive#footer .fp-tableCell
{
    min-height: 0;
}

/*Only display content to screen readers*/
.fp-sr-only
{
    position: absolute;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    width: 1px;
    height: 1px;
    padding: 0;

    white-space: nowrap;

    border: 0;
}
