/* Minification failed. Returning unminified contents.
(25,17): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(54,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(94,17): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(98,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(118,23): run-time error CSS1039: Token not allowed after unary operator: '-sub-font'
(132,22): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
 */
/*----------------------------------
Blogs
----------------------------------*/
.blog{
    padding: 60px 0;
}
.blog-main{
    margin-top: 40px;
    display: block;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    min-height: 540px;
}
.blog-main:hover{
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 20px 40px rgba(0,0,0,.09);
            box-shadow: 0 20px 40px rgba(0,0,0,.09);
}
.blog-main:hover .blog-title{
    color: var(--main-color);
}
.blog-img-ct{
    width: 100%;
    height: 350px;
    position: relative;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    overflow: hidden;
}
.blog-img-ct .blog-img{
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-position: center;
    background-size: cover;
}
.blog-infor-wrapper{
    padding: 20px;
}
.blog-date{
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 8px 11px;
    border-top-right-radius: 5px;
    background-color: var(--main-color);
}
.blog-infor-wrapper .blog-title{
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    max-height: 56px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
} 
.blog-infor-wrapper .blog-des{
    color: #929292;
    line-height: 28px;
    text-align: justify;
    max-height: 86px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.blog .page-item{
    margin: 0 5px;
}
.blog .pagination{
    margin-top: 40px;
}
.blog .page-item a{
    font-size: 14px;
    color: #929292;
    padding: 8px 15px;
    border-radius: 3px;
    background-color: transparent;
}
.blog .page-item a:hover{
    background-color: rgba(237, 32, 90,0.1);
    color: var(--main-color);
}

.blog .page-item.active a{
    background-color: var(--main-color);
    color: #fff;
}

.home-title span{
    z-index: 5;
    position: relative;
}
.home-news-des{
    font-size: 16px;
    color: #929292;
    text-align: center;
    max-width: 750px;
    margin: 20px auto 60px;
    line-height: 28px;
}
/*----------------------------------
Blogs
----------------------------------*/
.home-title {
    font-family: var(--sub-font);
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
}

.home-title::before {
    content: '';
    position: relative;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--main-color);
    top: 50px;
    margin: 0 auto;
}
.home-title-b{
    width: 60%;
    font-size: 18px;
    margin: 0 auto;
    color: #959994;
}
@media (max-width: 768px) {
  .blog-img-wrapper .blog-img-ct{
    height: 300px;
  }
}
@media (max-width: 575px){
  .blog-main .blog-img-wrapper .blog-img-ct{
    height: 200px;
  }
  .home-title{
      font-size: 20px;
      margin-bottom: 15px;
  }
  .home-title::before{
      display: none;
  }
  .home-title-b{
      width: 100%;
  }
  .blog-main{
      min-height: 400px;
  }
  .blog-infor-wrapper .blog-des{
      text-align: left;
  }
}
