/*Animations*/
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}



.fadein{
opacity: 0;
}   


/* End Animations*/

button {
    position: relative;
    padding: 7px 45px;
    background: green;
    font-size: 17px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    border: 1px solid green;
    border-radius: 8px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  }
  
  button:hover {
    border: 1px solid #f3b182;
    background: green;
    animation: wind 2s ease-in-out infinite;
  }
  
  @keyframes wind {
    0% {
      background-position: 0% 50%;
    }
  
    0% {
      background-position: 50% 100%;
    }
  
    0% {
      background-position: 0% 50%;
    }
  }
  
  .icon-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    transform-origin: 0 0;
    transform: rotate(10deg);
    transition: all 0.5s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
  }
  
  button:hover .icon-1 {
    animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
    transform: rotate(10deg);
  }
  
  @keyframes slay-1 {
    0% {
      transform: rotate(10deg);
    }
  
    50% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(10deg);
    }
  }
  
  .icon-2 {
    position: absolute;
    top: 0;
    left: 25px;
    width: 12px;
    transform-origin: 50% 0;
    transform: rotate(10deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
  }
  
  button:hover .icon-2 {
    animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
  }
  
  @keyframes slay-2 {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(15deg);
    }
  
    100% {
      transform: rotate(0);
    }
  }
  
  .icon-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    transform-origin: 50% 0;
    transform: rotate(-5deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
  }
  
  button:hover .icon-3 {
    animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
  }
  
  @keyframes slay-3 {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(0);
    }
  }

h1,h2,h3,h4,h5,h6{
    font-family: 'roboto slab';
}


p{
    font-family: 'Roboto'!important;
}


.navbar{
    background-color: white!important;
    box-shadow: none!important;

}

.navbar li a{
    font-family: 'Roboto Slab';
    font-weight: 500;
    font-size: 18px;
    color: black!important;
}

.navbar li a.active{
    
    color: green!important;
}

.navbar li a:hover{
    
    color: green!important;
}

.navbar li{
    margin: 0px 10px;
    color: black!important;
}

#buna-head{
    background: url('../img/buna-camping-head.jpg')rgba(0, 0, 0, 0.6);
    height: 80vh;
    background-size: cover;
    background-blend-mode: multiply;
    background-position: 0% 100%;
    display: flex;
    align-items: center;
    color: white;
}

.video-container {
   
    height: 80vh;
    width: 100%;
    position: relative;
    
}

.video-container video {
    filter: brightness(60%);
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
  
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
  z-index: 1;
  position: relative;
  text-align: center;
  color: white;
  padding: 10px;
}



.main-btn{
    margin-left: 10px;
    background-color: green;
    width: auto;
    font-family: 'Roboto';
    color: white;
    padding: 12px 20px;
}

.main-btn:hover{
    background-color: green;
    scale: 1.05;
    transition-duration: 0.4s;
    color: white;
}
.camping-type{
   padding-right: 20px;
}


#home-banner{
    background: url('../img/buna-banner.jpg')rgba(0, 0, 0, 0.5);
    height: 60vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    margin-top: 60px;
}


.camp-stat-row{
    background: url('../img/mountain-bg.png');
    height: 20vh;
    background-color: #f3f3f3;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


@media only screen and (max-width: 600px) {
    .camp-stat-row {
      height: auto;
    }
  }