/* Minification failed. Returning unminified contents.
(16,23): run-time error CSS1039: Token not allowed after unary operator: '-sub-font'
(29,22): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(88,17): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(110,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(136,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(149,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(150,24): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(168,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
 */

/*----------------------------------
Home-product
----------------------------------*/
.home-product {
    padding: 40px 0;
}
.home-title-b{
    margin-bottom: 30px;
    width: 60%;
    font-size: 18px;
    margin: 0 auto;
    color: #959994;
}
.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-p-main{
    margin: 40px 0;
}
.home-p-img-wrapper{
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 7px;
}

.home-p-img{
    width: 100%;
    height: 100%;
    background-color: #F5F4F0;
    background-position: center;
    background-size: cover;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.home-p-main:hover .home-p-img{
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.home-p-infor-wrapper{
    padding: 10px 20px;
}

.home-p-infor-wrapper .home-p-title{
    font-size: 20px;
    max-height: 56px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: bold;
    display: block;
    color: #000;
    margin-top: 10px;
    text-align: center;
}
.home-p-infor-wrapper p{
    text-align: center;
    font-size: 20px;
    display: block;
    color: #959994;
    margin-top: 10px;
}
.home-p-infor-wrapper .home-p-title:hover,
.home-p-infor-wrapper .home-p-title:focus{
    color: var(--main-color);
}
.control{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    display: flex;
    flex-direction: row;
    opacity: 0;
    -webkit-transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
     transition: 0.5s;
}
.quickview {
    display: flex;
    width: 45px;
    height: 45px;
    margin: 0 5px;
    background-color: var(--main-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.quickview i{
    font-size: 14px;
    color: #fff;
}
.home-p-main:hover .control,
.home-p-main:focus .control{
    opacity: 1;
    top: 40%;
    -webkit-transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
     transition: 0.5s;
}

.home-product-wrapper .owl-dots {
    position: relative;
    top: -15px;
}

.home-product-wrapper .owl-dots .owl-dot span {
    background-color: var(--main-color);
    border: 3px solid transparent;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    transition: 0.3s ease-in-out;
    margin: 5px;
}

.home-product-wrapper .owl-dots .owl-dot.active span,
.home-product-wrapper .owl-dots .owl-dot:hover span {
    background-color: var(--main-color);
    border-color: var(--main-color);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.home-product-wrapper .owl-nav [class*=owl-] {
    margin: 0;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    color: #fff;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.home-product-wrapper .owl-nav [class*=owl-]:hover {
    background-color: var(--main-color);
}

/*----------------------------------
Home-product
----------------------------------*/

@media (max-width: 991px) {
    .home-p-main{
        margin: 40px 0 0;
    }
}
@media (max-width: 768px) {

}
@media (max-width: 575px) {
    .home-title{
        font-size: 20px;
    }
    .home-title::before{
        display: none;
    }
    .home-title-b{
        width: 100%;
    }
    
}
