@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


a{
    text-decoration:none;
}

body{
     background: #151515;

}
#main-page{
    height: 100vh;
    overflow: hidden;
    position: relative
}
.carousel-wrapper{


}
.top-bar{
    padding: 1rem 0;
    background: #151515;
    width: 100%;

}
.logo-block{
    display: flex;
    justify-content: center;
}
#owl-demo{
    overflow: hidden;

}


 .item img{
    display: block;
    width: 100%;
    height: 100vh;
  object-fit: cover;

}
.item{
    position:relative;
}
.project-text{
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
}
.item img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.item:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.project-text h4  {
    transition: all 2s ease-in-out;
}
.project-text p  {
    display: none;

}
.project-title{
    background-image: linear-gradient(to right, #464f32bd, #25252580);
    padding:1rem;
    text-transform:uppercase;

}


.item:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);


}

.project-text h4  {
    font-size:30px;
    transition: transform 250ms;
}

.project-text p  {
    transition: transform 250ms;
}
.item:hover h4{
    transform: translateY(-10px);


}
.item:hover p{
    display: block;
    padding: 2rem;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
}
.item:hover .project-text {

    padding: 2rem;
    left:0%;
    display:flex;
    flex-direction:column;
    text-align:center;
    background-image: linear-gradient(to right, #464f32bd, #25252580);
}
.item:hover .project-title {

   
    background-image:none;
}
/*.owl-main-image{*/
/* background-image: url('img_girl.jpg');*/
/*    position: relative;*/
/*    display: block;*/
/*    width: 100%;*/
/*    background-position: top center;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/

/*}*/



#loading {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0.9;
    background-color: #000;
    z-index: 99;
}

#loading-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}
#loading-image img {
   width:70%;
}
.mobile-home{
    display:none;
}
.col-md-12, .col-md-3, .col-md-6{
    margin: 0 !important;
    padding: 0 !important;
}
.mobile-block{
    position: relative;
}
.text-overlay{
      width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    font-size: 25px;
    font-weight: bold;
    color: white;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    z-index: 50;
    cursor: pointer;
    bottom: 0;
    background-image: linear-gradient(#00000087, #00000085);
}

.text-overlay p{
      font-size: 15px;
    font-weight: 300;
    text-align: center;
    width: 85%;
}
.more-btn{
        color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #fff;
    padding: 0.5rem 1rem;
}

.more-btn:hover{
      color: #ffffff;
    text-decoration: none;
}


@media only screen and (max-width: 980px) {
    .carousel-wrapper {
       display: none;
    }
    #main-page {
    height: auto;
    overflow: hidden;
    position: relative;
}
.mobile-home{
    display:block;
}
}
