.blog_section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: var(--main-opa-color-3);
}

.blog_section .blog_content .blog_item {
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.blog_section .blog_content .blog_item:hover .blog_image img {
    transform: scale(1.1);
}

.blog_section .blog_content .blog_item .blog_image {
    overflow: hidden;
    padding: 0;
}

.blog_section .blog_content .blog_item .blog_image img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.blog_section .blog_content .blog_item .blog_image span i {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    width: 38px;
    height: 45px;
    padding-top: 7px;
    text-align: center;
    right: 20px;
    top: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
    background-color: var(--main-color);
}

.blog_section .blog_content .blog_item .blog_details {
    padding: 25px 20px 30px 20px;
}

.blog_section .blog_content .blog_item .blog_details .blog_title h5 a {
    color: #020d26;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 32px;
    font-weight: 400;
    transition: all 0.3s;
    text-decoration: none;
}

.blog_section .blog_content .blog_item .blog_details .blog_title h5 a:hover {
    color: var(--main-color);
}

.blog_section .blog_content .blog_item .blog_details ul {
    padding: 0 3px 10px 0;
    margin: 0;
}

.blog_section .blog_content .blog_item .blog_details ul li {
    display: inline-block;
    padding-right: 15px;
    position: relative;
    color: #7f7f7f;
}

.blog_section .blog_content .blog_item .blog_details ul li i {
    padding-right: 7px;
}

.blog_section .blog_content .blog_item .blog_details p {
    border-top: 1px solid #e5e5e5;
    margin-top: 4px;
    padding: 20px 0 4px;
}

.blog_section .blog_content .blog_item .blog_details a {
    font-size: 16px;
    display: inline-block;
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.blog_section .blog_content .blog_item .blog_details a:hover {
    color: #020d26;
}

.blog_section .blog_content .blog_item .blog_details a i {
    vertical-align: middle;
    font-size: 20px;
}

.blog_section .blog_content .owl-nav {
    display: block;
}

.blog_section .blog_content .owl-nav .owl-prev {
    position: absolute;
    left: -27px;
    top: 33%;
    border: 5px solid #fff;
    text-align: center;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 0;
    background: var(--main-color);
    transition: all 0.3s;
    color: #fff;
}

.blog_section .blog_content .owl-nav .owl-prev span {
    font-size: 25px;
    margin-top: -6px;
    display: inline-block;
}

.blog_section .blog_content .owl-nav .owl-prev:hover {
    background: #fff;
    border-color: var(--main-color);
    color: var(--main-color);
}

.blog_section .blog_content .owl-nav .owl-next {
    position: absolute;
    right: -27px;
    top: 33%;
    border: 5px solid #fff;
    text-align: center;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 0;
    background: var(--main-color);
    color: #fff;
    transition: all 0.3s;
}

.blog_section .blog_content .owl-nav .owl-next span {
    font-size: 25px;
    margin-top: -6px;
    display: inline-block;
}

.blog_section .blog_content .owl-nav .owl-next:hover {
    background: #fff;
    border-color: var(--main-color);
    color: var(--main-color);
}

.efecto-zoom {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    /** Chrome & Safari **/
    -moz-transition: all 1s ease-in-out;
    /** Firefox **/
    -o-transition: all 1s ease-in-out;
    /** Opera **/
}

.containerTitulo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 577px) {
    .blog_section .owl-nav .owl-prev {
        left: -17px !important;
    }

    .blog_section .owl-nav .owl-next {
        right: -17px !important;
    }
}