body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* background: red; */
}
@import url("https://fonts.googleapis.com/css?family=Muli:900");

.hero-section-container::before {
    width:100%;
    height:100vh;
  content: "";
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: url('/style/images/hd4.jpg') no-repeat center center;
  /* background: url('/wood1.jpg') no-repeat center center; */
  background-size: cover;
  z-index: -1;
  opacity: 0.8;
}

.wooden-text {
  /* position: absolute; */
  /* top: 0;
  left: 0; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  width: 100%;
  height: 100%;
  color: #fff;
  mix-blend-mode: darken;
  text-shadow: 0 0 0.05em rgba(0, 0, 0, 0.2), -0.025em 0.025em 0.1em #000,
    -0.05em 0.05em 0.1em #000, -0.1em 0.1em 0.3em #000,
    -0.1em 0.1em 0.5em rgba(0, 0, 0, 0.5);
  translate: translate3d(0, 0, 0);
  /* font-family: "Muli", sans-serif; */
  font-size: 1.8vw;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  margin: 10px auto;
  /* display: none; */
}

.small {
  font-size: 0.475em;
  text-decoration: underline burlywood 3px;
}


/*****/
.tree-container{
  display: flex;
  justify-content: center;
 
  /* padding:  5rem; */
  /* background-size: contain; */
}
.bg-tree-div{
  width:100%;
  height: 50vh;
  background:url('/tree.svg');
  /* opacity: 0.5; */
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
.text-container{
  width:40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}
.hero-section-container{
  display:none;
}

@media (orientation:portrait) and (max-width: 900px) {
  .hero-section-container{
    display:block ;
  }
  .hero-section-container::before {
    width:100%;
    height:50vh;
  }
  .wooden-text {
    font-size: 5vw;
  }

}

/*****/

.text-animation {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}

.text-animation span {
  opacity: 0;
  animation: wordFade 3s infinite;
}

.text-animation span:nth-child(1) {
  animation-delay: 1s;
}

.text-animation span:nth-child(2) {
  animation-delay: 2s;
}

.text-animation span:nth-child(3) {
  animation-delay: 3s;
}

/* .text-animation span:nth-child(4) {
  animation-delay: 4s;
}

.text-animation span:nth-child(5) {
  animation-delay: 5s;
} */

@keyframes wordFade {
  0% {
      opacity: 0;
      transform: translateX(-10px);
  }
  10% {
      opacity: 1;
      transform: translateX(0);
  }
  90% {
      opacity: 1;
      transform: translateX(0);
  }
  100% {
      opacity: 0;
      transform: translateX(10px);
  }
}