/* 
--------------------------------------------- */
@charset "utf-8";

/*--------------------------------------------- */

#news-slider{
    margin-top: 1px;
}
.post-slide{
    background: none;
    margin: 20px 20px 20px;
    border-radius: 19px;
    padding-top: 0;
    /*box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.60);*/
    text-align: center;
}
.post-slide .post-img{
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 0 0 15px;
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
    transform: scale(1,1);
    transition:transform 0.2s linear;
    width: 200px; 
    border-radius: 50%;
    border: 3px solid #cf3958;  
}
.post-slide:hover .post-img img{
    transform: scale(1.1,1.1);
}
.post-slide .over-layer{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
    background: none;
    transition:all 0.50s linear;
    border-radius: 50%;
}
.post-slide:hover .over-layer{
    opacity:1;
    text-decoration:none;
}
.post-slide .over-layer i{
    position: relative;
    top:45%;
    text-align:center;
    display: block;
    color:#fff;
    font-size:25px;
}
.post-slide .post-content{
    background:none;
    padding: 20px 0 0 0;
    border-radius: 18px;
}
.post-slide .post-title a{
    font-size:22px;
    font-family: 'Roboto Condensed', sans-serif; font-weight:600;
    color:#342053;
    display: inline-block;
    text-transform:none;
    transition: all 0.3s ease 0s;
    margin-bottom: 20px;
}
.post-slide .post-title a:hover{
    text-decoration: none;
    color:#c53758;
}
.post-slide .post-description{
    line-height:18px;
    color:#333;
    margin-bottom:26px;
}
.post-slide .post-date{
    color:#a9a9a9;
    font-size: 14px;
}
.post-slide .post-date i{
    font-size:20px;
    margin-right:8px;
    color: #CFDACE;
}
.post-slide .read-more{
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}
.post-slide .read-more:hover{
    background: #3498db;
    text-decoration:none;
    color:#fff;
}
.owl-controls .owl-buttons{
    text-align:center;
    margin-top:20px;
}
.owl-controls .owl-buttons .owl-prev{
    background: #fff;
    position: absolute;
    top:42%;
    left:-8px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 6px 25px -10px #222;
    transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next{
    background: #fff;
    position: absolute;
    top:42%;
    right: -8px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 6px 25px -10px #222;
    transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
    content:"\f104";
    font-family: FontAwesome;
    color: #333;
    font-size:30px;
}
.owl-controls .owl-buttons .owl-next:after{
    content:"\f105";
}
@media only screen and (max-width:1280px) {
    .post-slide .post-content{
        padding: 0px 15px 25px 15px;
    }
}