
.head_space{
  min-height: 225px;
  /* height: 100%; */
}
/* section{
  overflow: hidden;
} */

@media screen and (max-width: 500px) {
  .img-overlay{
    width:300px
  }
}

.img-overlay{
  padding-top: 25px;
  padding-left: 50px;
  position: absolute;
  z-index: 10;
  height: auto;
  width: 480px;
  max-width: 550px;
  opacity: 0.8;
}
.image_container{
  overflow: hidden;
  display: flex;
  /* position: absolute; */
}
.img-background{
  position:absolute;
  /* width: 100%;
  height: 200%; */
  opacity: 0.6;
}
.background_main{
  background: url(../images/bg/forrest_bg_50.png) no-repeat;
  background-size:150%;
}
.wrapper{
    width:100%;
    height:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}



.card{
    margin: 10px;
    flex: 1;
    flex-basis: 300px;
    flex-grow: 0;
    height: 440px;
    background: rgba(5, 5, 5, 0.1);
    box-shadow: 0px 4px 7px rgba(0,0,0,.5);
    cursor: pointer;
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
    overflow: hidden;
    position: relative;
}
.card img{
    width: 100%;
    height:100%;
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
}
.descriptions{
    position: absolute;
    top:0px;
    left:0px;
    background-color: rgba(83, 80, 80, 0.5);
    width:100%;
    height:100%;
    transition: all .7s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
    clip-path: circle(0% at 100% 100%);
}
.descriptions .img-description{
    display: block;
    /* padding: 20px; */
    height: auto;
    width: auto;
    max-width:280px;
    padding-right: 20px;
    padding-top: 20px;
    opacity: 85%;
}

.card:hover .descriptions{
    left:0px;
    transition: all .7s ease-in-out;
    clip-path: circle(75%);
}
.card:hover{
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
    box-shadow: 0px 2px 3px rgba(0,0,0,.3);
    transform: scale(.97);
}
.card:hover .img-bg{
    transition: all .5s cubic-bezier(.8,.5,.2,1.4);
    transform: scale(1.6) rotate(20deg);
    filter: blur(8px);
}
.card h1{
    /* color: #ff3838; */
    letter-spacing: 1px;
    margin: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.493);
}
.card p{
    line-height: 24px;
    height: 70%;
}
.card ul{
    list-style: none;
    padding-top: 10px;
}
.card li{
    margin-top: 12px;
    padding-bottom: 5px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.493);
    position: relative;
    /* text-align: center; */

}

.card button{
    width: fit-content;
    height: 40px;
    cursor: pointer;
    border-style: none;
    background-color: #ff3838;
    color:#fff;
    font-size: 15px;
    outline: none;
    box-shadow: 0px 2px 3px rgba(0,0,0,.4);
    transition: all .5s ease-in-out;
}
.card button:hover{
    transform: scale(.95) translateX(-5px);
    transition: all .5s ease-in-out;
}



/*  footer   */
/* footer {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

footer p {
    margin: 10px 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida  Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
footer .fa-heart{
    color: red;
}
footer .fa-dev{
    color: #fff;
}
footer .fa-twitter-square{
  color:#1da0f1;
}
footer .fa-instagram{
  color: #f0007c;
}
fotter .fa-linkedin{
  color:#0073b1;
}
footer .fa-codepen{
  color:#fff
}
footer a {
    color: #3c97bf;
    text-decoration: none;
  margin-right:5px;
} */
.youtubeBtn{
    position: fixed;
    left: 50%;
  /* transform:translatex(-50%); */
    bottom: 45px;
    cursor: pointer;
    transition: all .3s;
    vertical-align: middle;
    text-align: center;
    display: inline-block;
}
.youtubeBtn i{
   font-size:20px;
  float:left;
}
.youtubeBtn a{
    color:#ff0000;
    text-shadow: 0px 2px 5px rgba(0,0,0,.5);
    animation: youtubeAnim 1000ms linear infinite;
  float:right;
}
.youtubeBtn a:hover{
  color:#c9110f;
  transition:all .3s ease-in-out;
  text-shadow: none;
}
.youtubeBtn i:active{
  transform:scale(.9);
  transition:all .3s ease-in-out;
}
.youtubeBtn span{
    /* font-family: 'Lato'; */
    font-weight: bold;
    color: #fff;
    display: block;
    font-size: 12px;
    float: right;
    line-height: 20px;
    padding-left: 5px;
  
}

@keyframes youtubeAnim{
  0%,100%{
    color:#c9110f;
  }
  50%{
    color:#ff0000;
  }
}
/* footer  */