/**
 * fullView v1.1.2
 */

/*!
 * https://github.com/seeratawan01/fullview.js
 *
 * @license GPLv3 for open source use only
 *
 * Copyright (C) 2020 https://github.com/seeratawan01/fullview.js/blob/master/LICENSE
 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%
}

*,
:after,
:before {
    box-sizing: inherit
}

body {
    overflow: hidden;
    height: 100%
}

#fullview>* {
    display: block;
    min-height: 100vh !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000;
    overflow: hidden
}

#fv-dots {
    position: fixed;
    top: 50%;
    right: 75px;
    transform: translate(-50%, -50%)
}

#fv-dots ul {
    display: block;
    list-style: none
}

#fv-dots ul li {}

#fv-dots ul li a {
    display: block;
    margin: auto;
    text-align: center;
    padding: 8px 0;
}

#fv-dots ul li a span {
    display: block;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    background-color: #cbcddb;
    border-radius: 50%;
    margin: 0 auto;
    width: 7px;
    height: 7px;
}

#fv-dots ul a.active span {
    width: 9px;
    height: 9px;
    background-color: #bdbdbd
}

#fv-dots ul a:hover span {}

.fv-tooltip {
    position: relative;
    transition: all .65s cubic-bezier(.84, -.18, .31, 1.26)
}

.fv-tooltip .fv-tooltiptext {
    visibility: hidden;
    width: 120px;
    background: #3e474f;
    border-radius: .25em;
    color: #edeff0;
    text-align: center;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -1px;
    right: 105%
}

.fv-tooltip:hover .fv-tooltiptext {
    visibility: visible
}

.fv-tooltip .fv-tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #3e474f
}

.fv-tooltip.fv-tooltip-left .fv-tooltiptext::after {
    left: unset;
    right: 100%;
    border-color: transparent #3e474f transparent transparent
}