/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

.img-responsive{
    max-width: 100%;
    height: auto;
    display: block;
}
.section-imprensa{
    padding-bottom: 5%;
}
.section-imprensa .search{
    position: relative;
    display: flex;
    background: #eceeef;
    border-radius: 3px;
    overflow: hidden;
    height: 50px;
    margin-bottom: 20px;
}

.section-imprensa .search input{
    border: none !important;
    background: transparent;
    outline: none;
}
.section-imprensa .search > div{
    width: 50px;
    color: #fff;
    background-color: #000;
    display: flex;
}

.section-imprensa .search .fas{
    margin: auto;
}

.section-imprensa .ajax-imprensa{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    min-height: 200px;
}

.ajax-imprensa h2{
    font-size: 2rem;
    text-align: center;
    flex: 1;
}

.ajax-imprensa .item-imprensa{
    width: calc((100%) - 30px);
    margin: 0 15px 30px;
}
.ajax-imprensa .item-imprensa .image{
    overflow: hidden;
}
.ajax-imprensa .item-imprensa .image img{
    transform: scale(1);
    transition: transform 380ms;
}

@media only screen and (min-width:480px){
    .ajax-imprensa .item-imprensa{
        width: calc((100% / 2) - 30px);
    }
}

@media only screen and (min-width:768px){
    /* .ajax-imprensa .item-imprensa{
        width: calc((100% / 3) - 30px);
    } */
    .ajax-imprensa .item-imprensa:hover .image img{
        transform: scale(1.1);
    }
}

.ajax-imprensa .item-imprensa h3{
    font-size: 22px;
    font-weight: 700;
    color: #008C42;
    margin-bottom: 5px;
}

.ajax-imprensa .item-imprensa p{
    line-height: 1.2em;
    color: #333;
}

.ajax-imprensa .item-imprensa span{
    display: inline-block;
    font-size: 13px;
    line-height: 1em;
    padding: 10px 20px;
    border-radius: 2px;
    color: #fff;
    background-color: #008C42;
    box-sizing: content-box;
}

.ver-mais{
    display: flex;
    justify-content: center;
}

.ver-mais button{
    color: #fff;
    background-color: #008C42;
    font-size: .9em;
    font-weight: 700;
    padding: 12px 55px;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    margin-top: 20px;
    outline: none !important;
}

.ver-mais button:hover{
    background-color: #26b268;
}

.load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms ease;
}
.load.active {
    opacity: 1;
    pointer-events: auto;
}
.load .item-load {
    display: inline-block;
    width: 64px;
    height: 64px;
    position: relative;
}
.load .item-load:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: load 1.2s linear infinite;

}

.home-noticia .dce-post-image figure{
    overflow: hidden;
    padding-bottom: 0 !important;
}
.home-noticia .dce-post-image figure img{
    position: static !important;
    transform: scale(1) !important;
    transition: transform 280ms !important;
}
.home-noticia .dce-post-image:hover figure img{
    transform: scale(1.1) !important;
    filter: none !important;
}
@media only screen and (max-width:599px){
    .home-noticia .dce-post-block{
        flex-direction: column !important;
    }
    .home-noticia .dce-post-block > div {
        width: 100% !important;
        padding: 10px 0 !important;
    }
    .home-noticia .dce-post-block .dce-post-image {
        width: 100% !important;
    }
}
@keyframes load {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}