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

html, 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);
}

.pp-section {
    height: 100%;
    position: absolute;
    width: 100%;
}

.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;
    margin-top: -32px;
    bottom: 15px;
    opacity: 1;
    background: #333;
    border-radius: 10px;
    padding: 0px 10px;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#pp-nav.right {
    right: 35px;
}

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

.pp-table {
    display: inline-flex;
}

.pp-tableCell {
    display: table-cell;
    vertical-align: middle;
    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: 13px;
    margin: 5px 10px 10px 5px;
    position: relative;
    float: left;
}

.pp-slidesNav li {
    display: inline-block;
}

#pp-nav li a, .pp-slidesNav li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#pp-nav li .active span, .pp-slidesNav .active span {
    background: #fff;
}

#pp-nav span, .pp-slidesNav span {
    top: 2px;
    left: 2px;
    width: 15px;
    height: 15px;
    border: 1px solid #626567;
    background: #626567;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.pp-tooltip {
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    background: #444;
    padding: 5px 10px;
    border-radius: 15px 15px 15px 0px;
}

.pp-tooltip.right {
    top: -40px;
}

.pp-tooltip.left {
    left: 20px;
}

.pp-scrollable {
    overflow-y: scroll;
    height: 100%;
}

/* --------------------------------------- */

/* Overwriting fullPage.js tooltip color
* --------------------------------------- */

#pp-nav.custom .pp-tooltip {
    color: #AAA;
}

#markup {
    display: block;
    width: 450px;
    margin: 20px auto;
    text-align: left;
}
#myVideo{
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black; 
    background-position: center center;
    background-size: contain;
    object-fit: cover;
}