body::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: 0;
    -ms-overflow-style: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 900px) {
    html {
        font-size: calc(100vw / 9.6)
    }
}

@media screen and (max-width:899px) {
    html {
        font-size: 93.75px;
    }
}

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.header img {
    object-fit: cover;
}

.header .logo img {
    width: 200px;
}

.header .links img {
    width: 50px;
}

.header .links {
    display: flex;
    align-items: center;
}

.header .links .link {
    display: flex;
    align-items: center;
    color: black;
    margin-right: 15px;
}

.full-page .section {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.full-page .section .content-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.full-page .section .content-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.full-page .section .content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-page .section .content .left {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50vw;
    height: 100%;
}

.full-page .section .content .left .title {
    position: relative;
}

.full-page .section .content .left .title img {
    width: 80vh;
}

.full-page .section .content .left .qrcode {
    position: absolute;
    bottom: 27.5vh;
    right: 56.5vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-page .section .content .image {
    flex: 1;
}

.full-page .section .content .image img {
    flex: 1;
    width: 85vh;
}

/* cover fullpage */
#fp-nav.fp-right{
    right: 10px;
}
#fp-nav ul li, .fp-slidesNav ul li{
    height: auto;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span{
    position: relative;
    display: block;
    background: #d55068;
    font-size: 0;
    text-indent: -1000px;
    width: 9px;
    height: 9px;
    border: 2px solid white;
}
#fp-nav ul li a span.fp-sr-only, .fp-slidesNav ul li a span.fp-sr-only{
    position: absolute;
}
#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span{
    height: 25px;
    width: 8px;
    margin: -2px 0 0 -2px;
    border-radius: 11px;
    background: white;
}
#fp-nav ul li, .fp-slidesNav ul li{
    margin: 14px;
}