.mouse-parallax {
    width:100%;
    overflow:hidden;
}
.scene{
    position: relative;
    overflow: hidden;
    display: block;
    height: calc(100vh - 80px);
    width: 100%;
    padding: 0;
    margin: 0;
}
.mouse-parallax-bg{
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 110%;
    height: 110%;
    transition: all 0.2s ease;
}
.mouse-parallax-nebo {
    position: relative;
    width: 110%;
    height: 110%;
    top:-10%;
    left: -5% !important;
    z-index: 0;
}
.nebo {
    background-image: url("../images/nebo.jpg"); 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: right center; 
    background-position-x:center;
    background-repeat: no-repeat;
    width: 100%;
    left: -10%;
    height: 100%;
}
.mouse-parallax-dom {
    position: relative;
    width: 120%;
    height: 100%;
    left: -10% !important;
    z-index: 2;    
}
.dom {
    background-image: url("../images/paralax-dom.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%; 
}
.mouse-tree-elka {
    position: relative;
    width: 120%;
    height: 100%;
    z-index: 1;   
}
.elka {
    position: absolute;
    width: 267px;
    height: 347px;
    bottom:30%;
    left: 10%;
    background-image: url("../images/elka.png");
    z-index: 1;   
}
.mouse-tree-elka2 {
    position: relative;
    width: 120%;
    height: 100%;
    z-index: 1;   
}
.elka2 {
    position: absolute;
    width: 233px;
    height: 326px;
    bottom:30%;
    left: 1%;
    background-image: url("../images/elka2.png");
    z-index: 1;   
}
.mouse-tree-krupnomer {
    position:relative;
    width: 120%;
    height: 100%;
    z-index: 1;   
}
.krupnomer {
    position: absolute;
    width: 343px;
    height: 415px;
    bottom:25%;
    right: 22%;
    background-image: url("../images/krupnyak.png");  
}
.mouse-tree-listvenica {
    position: relative;
    width: 120%;
    height: 110%;
    z-index: 3;
}
.listvenica {
    position: absolute;
    width: 250px;
    height: 290px;
    bottom:20%;
    left: 14%;
    background-image: url("../images/listvenica.png");
}
.mouse-tree-yablinya {
    position: relative;
    width: 120%;
    height: 100%;
    z-index: 3;
}
.yablinya {
    position: absolute;
    width: 169px;
    height: 191px;
    bottom: 22.5%;
    right: 20%;
    background-image: url("../images/yablonya.png");
}
.mouse-tree-kamen {
    position: relative;
    width: 120%;
    height: 100%;
    z-index: 3;
}
.kamen {
    position: absolute;
    width: 187px;
    height: 184px;
    top: 65%;
    right: 63%;
    background-image: url("../images/kamen.png");
}
.mouse-parallax-oblako {
    position: relative;
    width: 120%;
    height: 100%;
    overflow: hidden;
}
.oblako {
    position: absolute;
    top:0;
    width: 857px;
    height: 350px;
    background-image: url("../images/oblako.png");
    -webkit-animation-name: oblako;
    -moz-animation-name: oblako;
    -o-animation-name: oblako;
    animation-name: oblako;

  -webkit-animation-duration: 150s;
  -moz-animation-duration: 150s;
  animation-duration: 150s;

  -webkit-animation-delay: 0;
  animation-delay: 0;
  -moz-animation-delay: 0;

  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;

  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-moz-keyframes oblako {
    0% {
        -moz-transform: translate(-850px,0);
        transform: translate(-850px,0);
    }
    100% {
        -moz-transform: translate(1980px,0);
        transform: translate(1980px,0);
    }
}

@-webkit-keyframes oblako {
    0% {
        -moz-transform: translate(-850px,0);
        transform: translate(-850px,0);
    }
    100% {
        -moz-transform: translate(1980px,0);
        transform: translate(1980px,0);
    }
}

/*scene buttons*/
.callback-bt {
    text-decoration: none;
    position: absolute;
    padding-top: 3px;
    padding-left: 3px;
    display: flex;
    background: #56B665;
    border: 2px solid #56B665;
    border-radius: 50%;
    box-shadow: 0 10px 15px rgb(56 163 253 / 50%);
    cursor: pointer;
    text-align: center;
    z-index: 3;
}
.callback-bt .text-call {
    text-decoration: none;
    padding: 3px 0;
    height: 36px;
    width: 36px;
    display: flex;
    border-radius: 50%;
    position: relative;
    transition: 1s;
    display: inline;
}
.callback-bt .text-call:after {
    position: absolute;
    top: -6px;
    left: -6px;
    content: '';
    border-radius: 50%;
    border: 1px solid #fff;
    height: 45px;
    width: 45px;
    display: block;
    -webkit-animation-name: pulsar;
    -moz-animation-name: pulsar;
    -o-animation-name: pulsar;
    animation-name: pulsar;

    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    animation-duration: 3s;

    -webkit-animation-delay: 0;
    animation-delay: 0;
    -moz-animation-delay: 0;

    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    animation-timing-function: linear;

    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
/* ANIMATION BUTTON*/
@-moz-keyframes pulsar {
    0% {
        transform: scale(1.1);
        -webkit-transform: scale(0.5);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -moz-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -ms-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -o-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -moz-opacity: 0.5;
        -khtml-opacity: 0.5;
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -o-transform: scale(2);
        -webkit-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -moz-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -ms-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -o-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
    }
}

@-webkit-keyframes pulsar {
    0% {
        transform: scale(1.1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -moz-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -ms-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -o-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -moz-opacity: 0.5;
        -khtml-opacity: 0.5;
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -o-transform: scale(2);
        -webkit-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -moz-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -ms-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -o-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
    }
}

.callback-bt .text-call span {
    text-align: center;
    font-size: 15px;
    color: #56B665;
    transition: 1s;
    padding-top: 2px;
}
.callback-bt .text-call img {
    margin: -4px -6px -6px -9px;
}
.scene_link_text {
    width: 210px;
    height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    color: black;
    background: #fff;
    position: absolute;
    top:99%;
    left: -100%;
    margin-top: 10px;
    margin-left: -50px;
    overflow: hidden;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events:none;
    -moz-transform: translateX(0px);
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transform: translateX(0px);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transform: translateX(0px);
    -o-transition: all 0.4s ease-in-out;
}
.scene_link:hover > .text-call .scene_link_text{
    height: 45px;
    -moz-opacity: 1;
    -khtml-opacity: 1;
     opacity: 1;
     -moz-transform: translateX(0px);
     -moz-transition: all 0.2s ease-in-out;
     -webkit-transform: translateX(0px);
     -webkit-transition: all 0.2s ease-in-out;
     -o-transform: translateX(0px);
     -o-transition: all 0.2s ease-in-out;
}
.krupnomery {
    position: absolute;
    bottom: 65%;
    right: 17%;
}
.hvoinue {
    position: absolute;
    bottom: 55%;
    left: 7%;
}
.listvenue {
    position: absolute;
    bottom: 35%;
    left: 23%;
}
.prirodnui-kamen {
    position: absolute;
    bottom: 22%;
    left: 37%;
}
.rulonui-gazon {
    position: absolute;
    bottom: 7%;
    right: 45%;
}
.plodovue {
    position: absolute;
    bottom: 30%;
    right: 12%;
}
.soputstvuushie {
    position: absolute;
    bottom: 23%;
    right: 24%;
}