*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    font-size: 14px;
    background-color: #1c1c1c;
    user-select: none;
}

.container {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 99;
}

.logo-or {
    position: absolute;
    width: 3em;
    top: 4em;
    left: 4em;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: 0.3s linear;
}

.logo-or:hover {
    opacity: 0.6;
    transition: 0.3s linear;
}

.logo-or img {
    width: 100%;
    height: auto;
}

.mention {
    position: absolute;
    width: 19em;
    bottom: 3em;
    left: 2.5em;
    transform: translateY(50%);
}

.mention img {
    width: 100%;
    height: auto;
}

.download {
    position: absolute;
    top: 3.2em;
    right: 2.8em;
    transition: 0.3s linear;
}

.download:hover a{
    border: 2px solid #fff;
    background-color: transparent;
    transition: 0.3s linear;
    cursor: pointer;
}

.download a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8em;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
    padding: 1em 4em 1em 2em;
    border: 2px solid #fff;
    border-radius: 30px;
    background-color: #fff;
    transition: 0.3s linear;
}

.download:hover a {
    color: #fff;
    transition: 0.3s linear;
}

.download svg {
    position: absolute;
    top: 0.3em;
    right: 2.2em;
    transition: 0.3s linear;
    width: 1em;
    height: 1em;
}

.download:hover svg #pandb_comingsoon-copy {
    stroke: #fff;
    transition: 0.3s linear;
}

#scene {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: visible;
}

#bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    background-image: url(img/bg_tablet.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.mah_tablet{
    position: absolute;
    height: 90vh;
    width: auto;
    top: 5vh;
    left: 10vw;
}
.mah_tablet img{
    height: 100%;
    width: auto;
}

#scene > * {
    width: 100%;
    height: 100%;
}

img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg {
    z-index: -1;
}

.bg img {
    width: 120%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: -10%;
}

.mah {
    z-index: 6;
    margin-top: 4vh;
}

.mah img {
    position: absolute;
    width: auto;
    height: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tri {
    z-index: 5;
    margin-top: 4vh;
}

.tri img {
    position: absolute;
    width: auto;
    height: 60vh;
    top: 35vh;
    left: 35vw;
    transform: translate(-50%, -50%);
}

.bg-for {
    z-index: 10;
}

.bg-for img {
    position: absolute;
    width: 120vw;
    height: 100vh;
    bottom: -6vh;
    left: -10vw;
}



/*///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////----------- loader----------------////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////*/
.mask {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 1;
}

.mask__slice {
    flex: 1;
    background-color: #1c1c1c;
}

.mask__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.logo {
    position: relative;
}

.logo--mask {
    overflow: hidden;
    margin-bottom: 1.75em;
    margin-left: 18.75%;
}

.logo--mask img {
    width: 5em;
    height: auto;
    margin: 0 auto;
    visibility: hidden;
    opacity: 0;
}

.mask-line {
    position: relative;
    transform-origin: left;
    width: 8em;
    height: 2px;
    border-radius: 30px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.25);
    visibility: hidden;
    opacity: 0;
}

.mask-line__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform-origin: left;
}