*{
  margin: 0px;
  padding: 0px;
}
html,
body{
  overflow: hidden;
    margin: 0px auto;
    text-align: center;
    background: #eed322;
    background-image: url(../../common/images/background.png);
    background-size: cover;
}
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: 450px; top: 80px;
  
  -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: -10px;
  -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: -1px;
    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; */
  background-position: bottom;


}
.Bear {
  background: url(../images/bear@3x.png);
    position: absolute;
    width: 400px;
    height: 400px;
    background-size: contain;
    z-index: 9;
    top: 290px;
    left: 44%;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    cursor: pointer;
}
.name-plate {
    background: url(../images/name-plate@3x.png);
    position: absolute;
    width: 270px;
    height: 300px;
    background-size: cover;
    z-index: 9;
    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: 200px;
    height: 200px;
    background-size: contain;
    z-index: 9;
    top: 358px;
    right: 220px;
    bottom: 0;
    background-repeat: no-repeat;
}
.food2 {
    background: url(../images/nuts@3x.png);
    position: absolute;
    width: 200px;
    height: 200px;
    background-size: contain;
    z-index: 9;
    top: 450px;
    right: 130px;
    bottom: 0;
    background-repeat: no-repeat;
}
.info {
    background: url(../images/info-board@3x.png);
    position: absolute;
    width: 300px;
    height: 320px;
    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*/

/* / 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: 250px) 
  and (max-device-width: 767px) {
    

#Fancy {
    height: 21vw;
} 
 .Fancy {
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 12px;
    height: 21vw;
} 
#clouds {
    max-height: 84px;
}
#Garden {
    top: 75px;
}
.tree1 {
    width: 85px;
    top: -70px;
    left: 48px;
}
.tree2 {
    width: 85px;
    top: -70px;
  right: 48px;
}
.Bear {
    width: 44vw;
    left: 58vw;
    height: 32vw;
    top: 20vw;
    background-size: contain;
    -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);
}
.info {
    left: 26vw;
    width: 34vw;
    background-size: contain;
    top: 20vw;
    height: 39vw;
}
.name-plate {
    width: 23vw;
    top: 21vw;
    background-size: contain;
    left: 2vw;
    height: 29vw;
}
.food1 {
    top: 135px;
    width: 36px;
    background-size: contain;
    right: 85px;
}
.food2 {
    top: 130px;
    width: 80px;
    background-size: contain;
    right: 15px;
}
  
    
}

/* Ipad responsive portrait */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (orientation: portrait) {
  
  
}
/* Ipad responsive landscape */
@media only screen 
 and (min-device-width: 768px) 
 and (max-device-width: 1024px)
 and (orientation: landscape) {
  
  
   
 }
 
/* Ipad Pro Portrait*/
@media only screen 
and (min-width: 768px) 
and (max-width: 1366px) 
and (orientation: portrait)  {
  
  
}
 
/* Ipad Pro landscape*/ 
@media only screen 
and (min-width: 768px) 
and (max-width: 1366px) {
    
#Garden {
    top: 200px;
}
#clouds {
  padding: 5px 0;
}
.name-plate {
    top: 29%;
    width: 18%;
    height: auto;
    background-size: contain;
    left: 2%;
}
.info {
    top: 27%;
    width: 30%;
    height: auto;
    background-size: contain;
  left: 21%;
}
.Bear {
    top: 20%;
    left: 47%;
    width: 53%;
    background-size: contain;
    height: auto;
  -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 {
  top: 40%;
    right: 15%;
    width: 10%;
    background-size: contain;
}
.food2 {
    top: 45%;
    right: 5%;
    width: 12%;
    background-size: contain;
  
}

    
  }


  