.blog{
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-sizing: border-box;
    
}
.blog__item{
    padding: 0 15px;
    height: 175px;
}
.blog__item:hover{
    cursor: pointer;
    transform: scale(1.03);
    transition: 0.5s ease;
    will-change: transform;
}
.blog__content{
    display: grid;
    grid-template-columns: 20% 80%;
    justify-items: center;
    align-items: center;
    margin: 15px 0;
    padding: 0;
    border-radius: 15px;
    -webkit-box-shadow: 5px 5px 15px 3px rgba(196,196,196,0.49);
    -moz-box-shadow: 5px 5px 15px 3px rgba(196,196,196,0.49);
    box-shadow: 5px 5px 15px 3px rgba(196,196,196,0.49);
}
.blog__item-img{
    height: 50px;
    width: 50px;
}
.blog__item-img img{
    width: 100%;
}
.blog__item-contenido{
    padding: 5px;
    box-sizing: border-box;
}
.blog__item-contenido h4{
    color: rgb(40, 45, 98);
    text-transform: uppercase;
    font-weight: 500;
}
.blog__item-contenido p{
    font-size: 15px;
    color:#606060;
}
/*=============================================
Escritorio pequeño o tablet vertical
=============================================*/
@media (max-width:991px) and (min-width:768px){
	.blog__content{
        margin: 0;
    }
}
/*=============================================
Escritorio celular
=============================================*/
@media (max-width:767px){
	.blog__item{
        height:225px;
    }
}

/*=============================================
noticias
============================================*/
.noticia{
    background-color: white;
    box-sizing: border-box;
    padding: 15px 30px;
    border-radius: 15px;
}
.news-header h3,
.news-header{
    text-align:center ;
    margin: 15px 0;
    font-size: 27px;
    text-transform: uppercase;
    font-weight: bolder;
    color: rgb(40, 45, 98);
}
.news-info{
    text-align: center;
    margin: 10px;
}
.news-info i{
    margin-right: 10px;
    margin-left: 20px;
}
.news__content p {
    margin-top: 40px;
    letter-spacing: 1px;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -o-pre-wrap;
}
.news__figure{
    max-width: 60%;
    margin: 25px auto;
}
.news__product-first{
    margin-bottom: 15px;
}
.news__product-second{
    margin: auto;
}
.news__product-second img{
    margin-bottom: 15px;
}
.news__product-img2{
    position: relative;
}
.news__product-img2:hover{
    transform: scale(1.05);
    transition: 0.5s ease;
    border: 1px solid #afafaf;
}
