/* Minification failed. Returning unminified contents.
(9,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(24,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(55,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(56,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(74,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(83,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(84,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(101,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(102,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(125,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(141,22): run-time error CSS1039: Token not allowed after unary operator: '-black'
(146,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
 */
#blogs{
    float: right;
    width: 100%;
    padding: 100px 5%;
}
#blogs > .title{
    float: right;
    width: 100%;
    color: var(--primary);
    position: relative;
    padding-right: 50px;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 30px;
}

#blogs > .title:before{
    content: "";
    width: 35px;
    height: 2px;
    position: absolute;
    right: 0;
    top: calc((100% - 3px) / 2);
    background-color: var(--primary);
}

#blogs > .description{
    float: right;
    width: 100%;
    font-weight: 700;
    font-size: 35px;
}
#blogs .blogs-con{
    float: right;
    width: 100%;
}
#blogs .item-con{
    float: right;
    width: 100%;
    padding: 20px;
}
#blogs .item-con .item{
    float: right;
    width: 100%;
    position: relative;
    cursor: pointer;

}
#blogs .item-con .item .date{
    position: absolute;
    top: 150px;
    right: 0;
    z-index: 999999;
    padding: 0 10px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 900;
    height: 35px;
    line-height: 35px;
    font-size: 17px;
}
#blogs.relative .item-con .item .date{
    top: 90px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
}
#blogs .item-con .item .date:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--primary);
    right: 7px;
    transform: skew(-20deg);
    z-index: -1;
    width: 100%;
}
#blogs .item-con .item .image{
    float: right;
    width: 100%;
    box-shadow: var(--box-shadow-home);
    border-radius: var(--border-radius-base);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#blogs.relative .item-con .item .image{
    height: 175px;
}
#blogs .item-con .item .image img{
    float: right;
    height: 100%;
}
#blogs .item-con .item .info{
    float: right;
    background-color: white;
    box-shadow: var(--box-shadow-home);
    border-radius: var(--border-radius-base);
    width: 90%;
    margin-right: 5%;
    padding: 20px;
    margin-top: -50px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
#blogs.relative .item-con .item .info{
    padding: 5px 10px;
}
#blogs .item-con .item .info:before {
    content: "";
    width: 60px;
    height: 8px;
    position: absolute;
    bottom: 0;
    border-radius: 0;
    opacity: 0;
    transition: all .3s;
    left: 0;
    z-index: 1;
    background-color: var(--primary);
}
#blogs.relative .item-con .item .info:before {
    height: 4px;
}

#blogs .item-con .item:hover .info:before {
    width: 100%;
    opacity: 1;
    border-radius: 0;
    transition: all .3s
}

#blogs .item-con .item .bg {
    position: absolute;
    content: '';
    background: var(--black);
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    border-radius: var(--border-radius-base);
    right: 0;
    transition: .8s ease;
    z-index: 2;
    opacity: 0.7;
}

#blogs .item-con .item:hover .bg {
    height: 250px;
    top: 0;
    transition: .8s ease
}
#blogs.relative .item-con .item:hover .bg {
    height: 175px;
}

#blogs .item-con .item .info .title-con{
    float: right;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 50px;
    overflow: hidden;
    margin-bottom: 10px;
}
#blogs.relative .item-con .item .info .title-con{
    margin-bottom: 0;
}
#blogs .item-con .item .info .title-con .title{
    float: right;
    width: 100%;
    line-height: 25px;
    font-size: 20px;
    font-weight: 700;
    text-align: justify;
    text-align-last: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
#blogs.relative .item-con .item .info .title-con .title{
    font-size: 13px;
    line-height: 19px;
}
#blogs .item-con .item .info .description{
    float: right;
    width: 100%;
    margin: 0;
    line-height: 30px;
    font-size: 14px;
    font-weight: 200;
    height: 90px;
    overflow: hidden;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media (max-width: 1399.98px) {
    #blogs .cloud-bg{
        padding: 50px 5%;
    }
}
@media (max-width: 699.98px) {
    #blogs .item-con{
        width: 100%;
    }
    #blogs{
        background-size: 200px;
    }
    #blogs .cloud-bg{
        background-size: 100px;
    }
}
@media (min-width: 700px)  and (max-width: 1099.98px) {
    #blogs .item-con{
        width: 50%;
    }
}
@media (min-width: 1300px)  and (max-width: 1499.98px) {
    #blogs .cloud-bg{
        padding: 50px 10%;
    }
}

