
/******************  News Slider Demo-2 *******************/

.post-slide2
{
    margin: 0 11px;
    box-shadow: 0 1px 2px rgba(43,59,93,0.30);
    margin-bottom: 2em;
}
@media only screen and (max-width: 601px)
{
    .post-slide2
  {
    margin: 0;
  }
}

.post-slide2 .post-img
{
    overflow: hidden;
}

.post-slide2 .post-img img
{
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all 1s ease-in-out 0s;
    border: 7px solid white;
}

.post-slide2:hover .post-img img
{
    transform: scale(1.08);
}

.post-slide2 .post-content
{
    background: #fff;
    width: 85%;
    opacity: 80%;
    margin-top: 150px;
    padding: 20px 0px 15px 30px;

    z-index: 99;
    position: absolute;
}
@media only screen and (max-width: 601px)
{
    .post-slide2 .post-content
  {
    margin-top: 130px;
  }
}

.post-slide2 h5
{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 17px;
    color: #303030;
    line-height: 18px;
    width: 90%;
}

.post-slide2 span
{
    background-color: red;
    padding: 5px 10px;
    color: white;

    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 11px;

    z-index: 99;
    position: absolute;

    margin-top: 20px;
    margin-left: 30px;

    transition: all 0.5s ease;
}

.post-slide2 span:hover
{
    background-color: darkred;
}

 /* BOTOES */

.owl-theme .owl-controls .owl-page span{
    background: transparent;
    border: 2px solid orange;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: orange;
}
