/* CSS Document - Content Slider */
@charset "utf-8";

.post-slide .post-date{
    position:absolute;
    top:2%;
    left:8%;
    padding: 1% 3%;
    background: #e74c3c;
}
.post-slide .date-month{
    font-size: 16px;
    color:#fff;
    text-transform: uppercase;
}
.post-slide .date-month:after{
    content:"";
    display: block;
    border:1px solid #fff;
}
.post-slide .year{
    font-size: 16px;
    color:#fff;
    display: block;
    text-align: center;
}

.post-slide .post-title{
    margin: 10px 0 12px 0;
    border-bottom: 1px solid  #E4E4E4;
    padding-bottom: 10px;
    position: relative;
}
.post-slide .post-title:after{
    content: "";
    border: 1px solid #dc005a;
    display: inline-block;
    width: 35px;
    position: absolute;
    left: 0;
    bottom: -1px;
}
.post-slide .post-title > a{
    color:#333333;
    text-transform: capitalize;
}
.post-slide .post-title > a:hover{
    text-decoration: none;
}
.post-slide .post-description{
    color:#555555;
    font-size: 17px;
    line-height: 22px;
    text-align: justify;
}
.post-slide:hover  .post-img > img{
    opacity: 0.5;
    transition:0.3s ease;
}
.post-slide:hover .post-title > a{
    color:#7a4b94;
    transition:0.3s ease;
}
.owl-buttons{
    position: absolute;
    top: -14%;
    right: 1.5%;
}

.owl-theme .owl-controls .owl-buttons div{
    border-radius: 5px 20px 5px 20px;
    margin: 0 0 0 3px;
    padding: 5px 12px;
    opacity: 1;
    color: #808080;
    background: #F1F1F1;
    border-top: 2px solid transparent;
    transition: all 0.3s ease 0s;
}
.owl-theme .owl-controls .owl-buttons div:hover{
    color: white;
    background-color: #E3E1E1;
    border-top: 2px solid #6091ba;
 
}
.owl-prev:after,
.owl-next:after{
    font-family: 'FontAwesome';
    content: "\f104";
    font-size: 15px;
}
.owl-next:after{
    content: "\f105";
}

/*
@media screen and (max-width:767px){
    .owl-buttons {
        display: none;
    }
}
@media screen and (max-width:480px){
    .post-slide{
        padding-left: 0;
        padding-right: 0;
    }
}
*/