@import url("https://fonts.googleapis.com/css?family=Dancing+Script");
/**
 * index.scss
 * - Add any styles you want here!
 */
body {
  background: #fff7b0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Dancing Script", cursive;
  overflow: hidden;
}
.main-section {
  width: 100vw;
  height: 100vh;
  background: #68cdaf;
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
}

#scene {
  height: 100%;
  overflow: hidden;
}

.heading {
  position: absolute;
  /*top: 30%;*/
  left: 50%;
  transform: translate(-50%, -50%);
  /*opacity: 0.15;*/
}

.cloud_3 {
  top: 20px !important;
  left: -150px !important;
  width: 400px;
  -webkit-animation: animateCloud3 15s linear infinite alternate both;
          animation: animateCloud3 15s linear infinite alternate both;
}
.cloud_3 img {
  width: 100%;
}

.cloud_1 {
  top: 200px !important;
  left: -150px !important;
}

.cloud_2 {
  left: auto !important;
  top: -50px !important;
  right: -50px !important;
  width: 300px;
  -webkit-animation: animateCloud4 15s linear infinite alternate both;
          animation: animateCloud4 15s linear infinite alternate both;
}

.hills-background-wrap {
  top: auto !important;
  bottom: 145px;
  z-index: -1;
  height: 50vh;
  left: -50px !important;
  right: -50px;
}
.hills-background-wrap > .inner {
  background: url("https://res.cloudinary.com/dyquku6bs/image/upload/v1537333316/hill-bg_rzukmt.png");
  background-size: 3000px;
  background-repeat: repeat-x;
  height: 100%;
}


/* KEYFRAMES */
@-webkit-keyframes animateCloud {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}
@keyframes animateCloud {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes animateCloud1 {
  0% {
    left: -10%;
  }
  100% {
    left: 100%;
  }
}
@keyframes animateCloud1 {
  0% {
    left: -10%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes animateCloud2 {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}
@keyframes animateCloud2 {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes animateCloud3 {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: 100px;
  }
}
@keyframes animateCloud3 {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: 100px;
  }
}
@-webkit-keyframes animateCloud4 {
  0% {
    margin-right: 0;
  }
  100% {
    margin-right: 150px;
  }
}
@keyframes animateCloud4 {
  0% {
    margin-right: 0;
  }
  100% {
    margin-right: 150px;
  }
}
/* ANIMATIONS */
#background-wrap {
  opacity: 0.7;
}

.x1 {
  -webkit-animation: animateCloud 100s linear infinite;
          animation: animateCloud 100s linear infinite;
  transform: scale(0.2);
  position: absolute;
  top: 25%;
}

.x2 {
  -webkit-animation: animateCloud1 200s linear infinite;
          animation: animateCloud1 200s linear infinite;
  transform: scale(0.3);
  position: absolute;
  top: 35%;
}

.x3 {
  -webkit-animation: animateCloud2 150s linear infinite;
          animation: animateCloud2 150s linear infinite;
  transform: scale(0.4);
  position: absolute;
  top: 50%;
  animation-direction:reverse;
}

.x4 {
  -webkit-animation: animateCloud3 150s linear infinite;
          animation: animateCloud3 150s linear infinite;
  transform: scale(0.5);
  position: absolute;
  top: 60%;
  /*animation-direction:reverse;*/
}

.x5 {
  -webkit-animation: animateCloud 150s linear infinite;
          animation: animateCloud2 150s linear infinite;
  transform: scale(0.25);
  position: absolute;
  top: 40%;
}


/* Clouds */
.cloud {
  background: #fff;
  background: linear-gradient(top, #fff 5%, #f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( 			startColorstr="#fff", 			endColorstr="#f1f1f1", 			GradientType=0 		);
  border-radius: 100px;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
  height: 120px;
  position: relative;
  width: 350px;
}

.cloud:after,
.cloud:before {
  background: #fff;
  content: "";
  position: absolute;
  z-index: -1;
}

.cloud:after {
  border-radius: 100px;
  height: 100px;
  left: 50px;
  top: -50px;
  width: 100px;
}

.cloud:before {
  border-radius: 200px;
  width: 180px;
  height: 180px;
  right: 50px;
  top: -90px;
}

/*.slide-right {*/
/*  -webkit-animation: slide-right 30s linear infinite both;*/
/*          animation: slide-right 30s linear infinite both;*/
/*}*/

/*.slide-right-img {*/
/*  -webkit-animation: slide-right-img 100s linear infinite;*/
/*          animation: slide-right-img 100s linear infinite;*/
/*}*/

@-webkit-keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
/*@-webkit-keyframes slide-right-rope {*/
/*  100% {*/
/*    background-position: 5000px 0;*/
/*  }*/
/*}*/
/*@keyframes slide-right-rope {*/
/*  100% {*/
/*    background-position: 5000px 0;*/
/*  }*/
/*}*/
/*@keyframes move-bg {*/
/*  to {*/
/*    background-position-x: 5000%;*/
/*  }*/
/*}*/