* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.blog-item img {
    display: block;
    width: 100%;
    vertical-align: middle;
    transition: transform .5s ease;
}

.blog-item a {
    display: flex;
    padding: 50px;
    overflow: hidden;
    align-items: center;
    color: #333;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.blog-item a:hover {
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.blog-item a:hover img {
    transform: scale(1.2);
}

.blog-item .icon {
    width: 35%;
    object-fit: cover;
    margin-right: 50px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 26px rgba(0, 0, 0, 0.4);
}

.blog-item .blog-content {
    width: 65%;
}

.blog-item .blog-content .title {
    font-size: 21px;
    text-transform: uppercase;
    color: #e31b23;
    font-weight: 600;
}

.blog-item .blog-content .blog-category {
    color: #e31b23;
    text-transform: uppercase;
    margin-bottom: 1em;
    font-weight: 400;
    line-height: 1.3 !important;
}

.blog-item .blog-content .blog-category .blog-date {
    color: #333;
}

.blog-item .blog-content .blog-category .blog-date i {
    margin: auto 10px;
}

.blog-item .blog-content .blog-category .blog-author {
    text-transform: none;
    color: #333;
}

.blog-item .blog-content .blog-category .blog-author span {
    color: #e31b23;
}

.blog-item .blog-content .rounded {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 1em;
}

.blog-item .item-arrow {
    height: 20px;
    width: 15%;
    position: relative;
    text-align: center;
    font-size: 35px;
    left: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.blog-item a:hover > .item-arrow {
    /*padding-left: 40px;*/
    color: #e31b23;
    left: 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.blog-item .rounded {
    width: 70px;
    height: 5px;
    border-radius: 6px;
    background-image: linear-gradient(to right, #e31b23, #b5171d);
    /* background: #2bb769; */
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .blog-item .blog-content {
        width: 100%;
        margin-top: 35px;
    }

    .blog-item .blog-content .title {
        font-size: 18px;
    }

    .blog-item .item-arrow {
        margin: auto;
    }

    .blog-item .icon {
        width: 100%;
    }

    .blog-item .icon img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .blog-item {
        width: 92%;
        margin: auto;
    }

    .blog-item a {
        display: block;
        padding: 30px;
        margin-bottom: 3em;
        box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
    }

    .blog-item a:hover {
        box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.2);
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }
}
