﻿

.owl-wrapper {
  position: relative;
  height: 440px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.cards{
  position: relative;
  height:440px;
  width: 100%;
  direction:ltr;
  padding: 0 0;
  background-color: #fefefe;
  margin-bottom:0px;
}
.owl-carousel .owl-stage {
    padding:0 0 20px 0;
}
.card{
  display: block;
  justify-content: center;
  height: 440px;
  padding: 0;
  margin: 0;
  position:relative;
  border-radius: 10px;
  opacity: 1;
  transition: transform 0.4s 0.5s ease-out, opacity 1s ease;
  /*box-shadow:0px -2px 6px 2px rgba(0, 0, 0, 0.2); */ 
}
  
.card img{
  height: 250px;
  object-fit:cover;    
  border-radius: 10px;
  border:1px #e0e0e0 solid;
}
.card .title-content{
    color:#fcfcfc;
    font-size:25px;
    font-weight:300;
    position:absolute;
    top:15px;
    left:15px;
}
.card .title-content span{
    color:#fcfcfc;
    font-size:25px;
    font-weight:600;
}



@keyframes slide-down{
  0%{
    opacity: 0;
    transform: translate3d(0,-120%,0);
  }
  
  100%{
    opacity: 1;
    transform: translate3d(0,0%,0);
  }
}


@keyframes slide-up{
  0%{
    opacity: 1;
    transform: translate3d(0,0%,0);
  }
  
  100%{
    opacity: 0;
    transform: translate3d(0,-120%,0);
  }
}