*{
	margin: 0px;
	padding: 0px;
}
html,
body{
	overflow: hidden;
    margin: 0px auto;
    text-align: center;
    background: #a6ed55;
	-webkit-touch-callout: none;
    -webkit-user-select: none;

}
.overlay {
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 100;
}
.overlay img.text {
    width: 35vw;
    height: auto;
    position: absolute;
    top: 12%;
    left: 20%;
	
}
.arrow {
    position: absolute;
    width: 10vw;
    height: auto;
    top: 40%;
    left: 62%;
    z-index: 105;
}
.arrow-name {
    position: absolute;
    width: 10vw;
    height: auto;
    top: 40%;
    left: 16%;
    z-index: 105;
}
.Invisible{
    display: none !important;
}

img {
	width: auto;
    height: 100vh;
    margin: 0px auto;
}
/* Cloud Animation */
#clouds{
	padding: 0px 0;
	background: #86d3f1;
	background: -webkit-linear-gradient(top, #86d3f1 0%, #fff 100%);
	background: -linear-gradient(top, #86d3f1 0%, #fff 100%);
	background: -moz-linear-gradient(top, #86d3f1 0%, #fff 100%);
}

/*Time to finalise the cloud shape*/
.cloud {
	width: 200px; height: 60px;
	background: #fff;
	
	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px;
	 position: relative; 
}

.cloud:before, .cloud:after {
	content: '';
	position: absolute; 
	background: #fff;
	width: 100px; height: 80px;
	position: absolute; top: -15px; left: 10px;
	
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}

.cloud:after {
	width: 120px; height: 120px;
	top: -55px; left: auto; right: 15px;
}

/*Time to animate*/
.x1 {
	-webkit-animation: moveclouds 15s linear infinite;
	-moz-animation: moveclouds 15s linear infinite;
	-o-animation: moveclouds 15s linear infinite;
}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
	left: 200px;
	top: 20px;
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
	opacity: 0.6; /*opacity proportional to the size*/
	
	/*Speed will also be proportional to the size and opacity*/
	/*More the speed. Less the time in 's' = seconds*/
	-webkit-animation: moveclouds 35s linear infinite;
	-moz-animation: moveclouds 35s linear infinite;
	-o-animation: moveclouds 35s linear infinite;
}

.x3 {
	left: 500px; top: -23px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 15s linear infinite;
	-moz-animation: moveclouds 15s linear infinite;
	-o-animation: moveclouds 15s linear infinite;
}

.x4 {
	left: 470px; 
	top: -86px;
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	opacity: 0.75; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 18s linear infinite;
	-moz-animation: moveclouds 18s linear infinite;
	-o-animation: moveclouds 18s linear infinite;
}

.x5 {
	left: -150px; top: -150px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 25s linear infinite;
	-moz-animation: moveclouds 25s linear infinite;
	-o-animation: moveclouds 25s linear infinite;
}


@-webkit-keyframes moveclouds {
	0% {margin-left: 500px;}
	100% {margin-left: -500px;}
}
@-moz-keyframes moveclouds {
	0% {margin-left: 500px;}
	100% {margin-left: -500px;}
}
@-o-keyframes moveclouds {
	0% {margin-left: 500px;}
	100% {margin-left: -500px;}
}

/* Garden */

.tree1 {
    position: absolute;
    background-image: url(../../../../common/images/tree1@3x.png);
    height: 240px;
    width: 180px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    top: -175px;
    left: 150px;
    -webkit-animation: movefly 5s linear infinite;
	-moz-animation: movefly 5s linear infinite;
	-o-animation: movefly 5s linear infinite;
}
.tree2 {
    position: absolute;
    background-image: url(../../../../common/images/tree1@3x.png);
    height: 240px;
    width: 180px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    top: -175px;
    right: 150px;
    -webkit-animation: movefly 5s linear infinite;
	-moz-animation: movefly 5s linear infinite;
	-o-animation: movefly 5s linear infinite;
}
#Garden{
    position: absolute;
    width: 100%;
    height: 135px;
    right: 0;
    left: 0;
    top: 200px;
}
.Garden{
    background-image: url(../../../../common/images/grass@3x.png);
    height: 135px;
    width: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
}

/* Fancy */
#Fancy {
  position: absolute;
  width: 100%;
  height: 170px;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.Fancy {
	background-image: url(../../../../common/images/fancy@3x.png);
    height: 170px;
    width: 100%;
    background-size: 100%;
	background-repeat: no-repeat;
	background-position: 0 0;

}
.Bear {
    background: url(../images/bear@3x.png);
    position: absolute;
    width: 400px;
    height: 430px;
    background-size: cover;
    z-index: 101;
    top: 180px;
    left: 46%;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
	cursor:pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
	-moz-tap-highlight-color: rgba(0,0,0,0) ;
	-o-tap-highlight-color: rgba(0,0,0,0) ;
}
/* .Bear:active { */
  /* -webkit-transform: scale3d(0.9, 0.9, 1); */
/* } */
.name-plate {
    background: url(../images/name-plate@3x.png);
    position: absolute;
    width: 270px;
    height: 300px;
    background-size: cover;
    z-index: 102;
    top: 280px;
    left: 70px;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
	cursor:pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
	-moz-tap-highlight-color: rgba(0,0,0,0) ;
	-o-tap-highlight-color: rgba(0,0,0,0) ;
}
.food1 {
    background: url(../images/honey@3x.png);
    position: absolute;
    width: 100px;
    height: 200px;
    background-size: cover;
    z-index: 9;
    top: 360px;
    right: 350px;
    bottom: 0;
    background-repeat: no-repeat;
}
.food2 {
    background: url(../images/nuts@3x.png);
    position: absolute;
    width: 200px;
    height: 115px;
    background-size: cover;
    z-index: 9;
    top: 320px;
    right: 190px;
    bottom: 0;
    background-repeat: no-repeat;
}
.info {
    background: url(../images/info-board@3x.png);
    position: absolute;
    width: 313px;
    height: 339px;
    background-size: cover;
    z-index: 9;
    top: 180px;
    left: 340px;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    -webkit-animation: jello 9s linear infinite;
	-moz-animation: jello 9s linear infinite;
	-o-animation: jello 9s linear infinite;
}


/* Tree Animation */
@-webkit-keyframes movefly {
    0% {transform: skew(-3deg);}
    50% {transform: skew(3deg);}
	100% {transform: skew(-3deg);}
}
@-moz-keyframes movefly {
    0% {transform: skew(-3deg);}
    50% {transform: skew(3deg);}
	100% {transform: skew(-3deg);}
}
@-o-keyframes movefly {
    0% {transform: skew(-3deg);}
    50% {transform: skew(3deg);}
	100% {transform: skew(-3deg);}
}


@keyframes jello {
    11.1% {
      transform: none
    }
    22.2% {
      transform: skewX(-4deg) skewY(-4deg)
    }
    33.3% {
      transform: skewX(3.25deg) skewY(3.25deg)
    }
    44.4% {
      transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
      transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
      transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
      transform: skewX(0.390625deg) skewY(0.390625deg)
    }
    88.8% {
      transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
    100% {
      transform: none
    }
  }
  
/*Bear animation*/

.animated {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-15px);}
  60% {transform: translateY(-5px);}
}
.bounce {
  animation-name: bounce;
}

@keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}
.flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}
.pulse {
  animation-name: pulse;
  animation-duration: 2.5s;
}

@keyframes rubberBand {
  0% {transform: scale(1);}
  30% {transform: scaleX(1.25) scaleY(0.75);}
  40% {transform: scaleX(0.75) scaleY(1.25);}
  60% {transform: scaleX(1.15) scaleY(0.85);}
  100% {transform: scale(1);}
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, 100% {transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
  20%, 40%, 60%, 80% {transform: translateX(10px);}
}
.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {transform: rotate(15deg);}
  40% {transform: rotate(-10deg);}
  60% {transform: rotate(5deg);}
  80% {transform: rotate(-5deg);}
  100% {transform: rotate(0deg);}
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes wobble {
  0% {transform: translateX(0%);}
  15% {transform: translateX(-25%) rotate(-5deg);}
  30% {transform: translateX(20%) rotate(3deg);}
  45% {transform: translateX(-15%) rotate(-3deg);}
  60% {transform: translateX(10%) rotate(2deg);}
  75% {transform: translateX(-5%) rotate(-1deg);}
  100% {transform: translateX(0%);}
}
.wobble {
  animation-name: wobble;
}

@keyframes flip {
  0% {transform: perspective(400px) translateZ(0) rotateY(0) scale(1);animation-timing-function: ease-out;}
  40% {transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);animation-timing-function: ease-out;}
  50% {transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);animation-timing-function: ease-in;}
  80% {transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);animation-timing-function: ease-in;}
  100% {transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);animation-timing-function: ease-in;}
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes lightSpeedIn {
  0% {transform: translateX(100%) skewX(-30deg);opacity: 0;}
  60% {transform: translateX(-20%) skewX(30deg);opacity: 1;}
  80% {transform: translateX(0%) skewX(-15deg);opacity: 1;}
  100% {transform: translateX(0%) skewX(0deg);opacity: 1;}
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes rollIn {
  0% {opacity: 0;transform: translateX(-100%) rotate(-120deg);}
  100% {opacity: 1;transform: translateX(0px) rotate(0deg);}
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rotateIn {
  0% {transform-origin: center center;transform: rotate(-200deg);opacity: 0;}
  100% {transform-origin: center center;transform: rotate(0);opacity: 1;}
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes hinge {
  0% {transform: rotate(0);transform-origin: top left;animation-timing-function: ease-in-out;}
  20%, 60% {transform: rotate(80deg);transform-origin: top left;animation-timing-function: ease-in-out;}
  40% {transform: rotate(60deg);transform-origin: top left;animation-timing-function: ease-in-out;}
  80% {transform: rotate(60deg) translateY(0);transform-origin: top left;animation-timing-function: ease-in-out;}
  100% {transform: translateY(700px);}
}
.hinge {
  margin: 20px;
  animation-name: hinge;
}

@media all and (max-width: 680px) {
  .wrap {
   width: 100%;
  }
  .box {
    width: 100%;
  height: 55px;
    clear: both;
    margin: 0px auto;
  }
  .text {
   margin-top: 20px; 
  }
  .hingebox, .flipbox {
     display: none; 
  }
}

/*Responsive css*/

/* Ipad Pro landscape*/ 
@media only screen 
and (min-width: 768px) 
and (max-width: 1024px) 
and (orientation: landscape)  {
	  
#Garden {
    top: 200px;
}
#clouds {
	padding: 5px 0;
}
.name-plate {
    top: 35%;
    width: 18%;
    height: auto;
    background-size: contain;
    left: 2%;
}
.info {
    top: 30%;
    width: 25%;
    height: auto;
    background-size: contain;
    left: 24%;
}
.Bear {
   top: 24%;
    left: 55%;
    width: 40%;
    background-size: contain;
    height: auto;
	
}
 
.food1 {
	top: 45%;
    right: 16%;
    width: 6%;
    background-size: contain;
}
.food2 {
    top: 41%;
    right: 4%;
    width: 12%;
    background-size: contain;
	
}

	  
  }
  
  /* Iphone x landscape*/ 
@media only screen and (min-device-height: 375px) and (max-device-height: 812px) and (-webkit-device-pixel-ratio: 3) { 
.Fancy {
    height: 120px;
    top: 50px;
    bottom: 0;
    position: absolute;
}
#clouds {
    max-height: 84px;
}
#Garden {
    top: 75px;
}
.tree1 {
    width: 85px;
    top: -70px;
    left: 48px;
}
.tree2 {
    width: 85px;
    top: -70px;
	right: 48px;
}
.Bear {
    width: 20vw;
    height: auto;
    top: 50px;
    background-size: contain;
}
.info {
    left: 20vw;
    width: 15vw;
    background-size: contain;
    top: 68px;
}
.name-plate {
    width: 16vw;
    top: 100px;
    background-size: contain;
    left: 2vw;
}
.food1 {
    top: 130px;
    width: 6vw;
    background-size: contain;
    right: 20vw;
}
.food2 {
    top: 160px;
    width: 12vw;
    background-size: contain;
    right: 5vw;
}
.arrow {
    position: absolute;
    width: 8vw;
    height: auto;
    top: 30%;
    left: 56%;
    z-index: 105;
}
.arrow-name {
    position: absolute;
    width: 8vw;
    height: auto;
    top: 35%;
    left: 15%;
    z-index: 105;
}
}
/* / Portrait / */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 767px)
  and (orientation: portrait) {
}

/* / Landscape / */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 767px)
  and (orientation: landscape) {
	  

#Fancy {
    height: 100px;
} 
 .Fancy {
	background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: -webkit-fill-available;
    width: 100%;
	top: 0px !important;
}	
#clouds {
    max-height: 84px;
}
#Garden {
    top: 75px;
}
.tree1 {
    width: 85px;
    top: -70px;
    left: 48px;
}
.tree2 {
    width: 85px;
    top: -70px;
	right: 48px;
}
.Bear {
    width: 38vw;
    left: 55vw;
    height: auto;
    top: 56px;
    background-size: contain;
}
.info {
    left: 24vw;
    width: 22vw;
    background-size: contain;
    top: 90px;
}
.name-plate {
    width: 21vw;
    top: 100px;
    background-size: contain;
    left: 2vw;
}
.food1 {
    top: 171px;
    width: 7vw;
    background-size: contain;
    right: 19vw;
}
.food2 {
    top: 135px;
    width: 13vw;
    background-size: contain;
    right: 9vw;
}
.overlay img.text {
    top: 10%;
    left: 25%;
}
.arrow {
    position: absolute;
    width: 10vw;
    height: auto;
    top: 35%;
    left: 61%;
    z-index: 105;
}
.arrow-name {
position: absolute;
    width: 10vw;
    height: auto;
    top: 35%;
    left: 18%;
    z-index: 105;
}
	  
}


  