body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}
h1, h2 {
    padding: 0;
    margin: 0;
}
.scrollpage {
    width: 100%;
    height: auto;
}
.scrollpage .section {
    height: 100vh;
    width: 100%;
    position: relative;
    background-position: center, center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
    touch-action: none;
}
.scrollpage .section::after {
    position: absolute;
    content: '';
    background: #0000007d;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    transition: opacity .2s ease;
}
.scrollpage .section.active::after {
    /* background: #1e1e1e24; */
    opacity: 0.4;
}

.scrollpage .section .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    color: white;
}
.footer {
    text-align: center;
}
.footer span {
    display: block;
    padding: 100px;
}
#fp-nav {
    position: fixed;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    z-index: 99;
    pointer-events: none; /* deja clickeables solo los dots */
}
#fp-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#fp-nav ul li {
    width: 12px;
    height: 12px;
    margin: 10px 0;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}
#fp-nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
#fp-nav ul li a span {
    width: 8px;
    height: 8px;
    background: #cfcfcf;
    border-radius: 50%;
    display: block;
    transition: all 0.1s ease;
    margin: 2px auto;
}
/* Dot activo */
#fp-nav ul li.active a span {
    width: 10px;
    height: 10px;
    background: #fff;
    box-shadow: 0 0 0 1.5px #fff;
}
 #fp-nav ul li a:focus span {
    background: #999 !important; 
    transform: scale(1) !important;
    outline: none !important;
}
header.header{
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
}
.navigation {
    float: right;
    padding: 24px;
}
.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.navigation ul li {
    display: inline-block;
}
.navigation ul li a {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 2px;
    transition: all 0.1s ease;
}
.navigation ul li.active a {
    opacity: .7;
}