#contenedor_title_blog {
    opacity: 0;
    transition: .5s ease-in-out all;
}

.col_articles {
    transform: translateX(-300%);
    transition: .5s ease-in-out all;
}

.col_articles .article_contenedor_blog {
    box-shadow: 3px 7px 19.9px rgba(176, 176, 176, .25);
    transition: .3s ease-in-out all;
}

.col_articles .article_contenedor_blog:hover {
    box-shadow: 3px 7px 19.9px rgba(176, 176, 176, .65);
}

.article_contenedor_image {
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    height: 250px;
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .article_contenedor_image {
        height: 256px;
        overflow: hidden;
    }

    .article_contenedor_image img {
        position: absolute;
    }
}

@media screen and (min-width: 1300px) {
    .article_contenedor_image {
        height: 456px;
    }
}

.contenedor_excerpt_article {
    font-size: 14px;

    @media screen and (min-width: 992px) {
        font-size: 16px;
    }

    @media screen and (min-width: 1400px) {
        font-size: 16px;
    }
}


/* SINGLE PAGE OF BLOG */

.contenedor_text_single_blog {
    margin-top: -1rem;
    margin-bottom: 5rem;
}

.contenedor_text_single_blog .text_single_blog {
    padding: 1rem;
    background-color: #ffffff;
    box-shadow: 3px 7px 19.9px rgba(176, 176, 176, .25);
}

@media screen and (min-width: 992px) {
    .contenedor_text_single_blog .text_single_blog {
        padding: 5rem;
        margin-top: -6rem;
    }
}

.contenedor_text_single_blog .blog_content_text p {
    margin-bottom: 1rem;
    font-size: 14px;
}

@media screen and (min-width: 992px) {
    .contenedor_text_single_blog .blog_content_text p {
        font-size: 16px;
    }
}

.contenedor_text_single_blog .blog_content_text img {
    width: 100%;
    height: auto;
}

.contenedor_button a {
    display: inline-block;
    border: 1px solid #DADADA;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    padding: .5rem 1rem;
    box-sizing: border-box;
    @media screen and (min-width: 330px) {
        padding: .5rem 2rem;
    }
    @media screen and (min-width: 992px) {
        font-size: 20px;
        padding: .5rem 2.5rem;
    }
}


.contenedor_single_post_image {
    max-height: 250px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .contenedor_single_post_image {
        max-height: 400px;
    }
}

@media screen and (min-width: 992px) {
    .contenedor_single_post_image {
        max-height: 600px;
    }
}

