/*===================================
style-2
=========================================*/

.blog-carousel.style-2 .owl-stage-outer{
    padding: 20px;
    margin: -20px;
}

.iq-blog-box.style-2{
    border: none;
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-box);
    -webkit-border-radius: var(--border-radius-box);
}

.owl-carousel .iq-blog-box.style-2:hover{
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
}

.iq-blog-box.style-2 .iq-blog-image{
    overflow: hidden;
}

.iq-blog-box.style-2 .iq-blog-image img{
    width: 100%;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

.iq-blog-box.style-2:hover img{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.iq-blog-box.style-2 .iq-blogtag{
    top: 16px;
    right: 16px;
    left: auto;
    bottom: auto;
    margin: 0;
    padding: 0;
    width: auto;
}

.iq-blog-box.style-2 .iq-blogtag li a{
    background: var(--color-theme-light-blue);
    color: var(--primary-color);
    padding: 10px;
}

.iq-blog-box.style-2 .iq-blogtag li a:hover{
    background: var(--primary-color);
    color: var(--white-color);
}

.iq-blog-box.style-2 .blog-title{
    margin: 6px 0 12px;
}

.iq-blog-box.style-2 .iq-blog-detail{
    padding: 16px;
}

.iq-blog-box.style-2 .iq-blog-detail p{
    margin-bottom: 8px;
}

/*===================================
style-3
=========================================*/

.iq-blog-box.style-3{
    border: none;
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-box);
    -webkit-border-radius: var(--border-radius-box);
}

.owl-carousel .iq-blog-box.style-3:hover{
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
}

.iq-blog-box.style-3 .iq-blog-image{
    text-align: left;
}

.iq-blog-box.style-3 .iq-blog-image img{
    width: 100%;
    border-radius: var(--border-radius-box);
    -webkit-border-radius: var(--border-radius-box);
}

.iq-blog-box.style-3 .iq-blog-detail{
    padding: 16px 16px 24px 16px;
}

.iq-blog-box.style-3 .blog-title{
    margin: 0px 0 16px;
}

.iq-blog-box.style-3 .iq-blogtag{
    position: static;
    margin: -40px 16px 0 16px;
    width: auto;
    padding: 6px 12px;
    background: var(--primary-color);
    border-radius: var(--border-radius-ten);
    -webkit-border-radius: var(--border-radius-ten);
}

.iq-blog-box.style-3 .iq-blogtag li.time{
    position: relative;
    padding-right: 11px;
}

.iq-blog-box.style-3 .iq-blogtag li.time a::after{
    content: none;
}

.iq-blog-box.style-3 .iq-blogtag li{
    margin-right: 10px;
}

.iq-blog-box.style-3 .iq-blogtag li:last-child{
    margin-right: 0;
}


.iq-blog-box.style-3 .iq-blogtag li.time::after{
    content: "";
    height: 20px;
    width: 1px;
    background: var(--dark-menu);
    position: absolute;
    top: 50%;
    right: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.iq-blog-box.style-3 .iq-blogtag li a{
    padding: 0;
    background: transparent;
    text-transform: capitalize;
    font-size: var(--font-size-body);
    line-height: var(--font-line-height-body);
}

.iq-blog-box.style-3 .iq-blogtag li a:hover{
    background: transparent;
}

.iq-blog-box.style-3 .iq-blogtag li a::after{
    content: ",";
}

.iq-blog-box.style-3 .iq-blogtag li:last-child a::after{
    content: none;
}