/* Minification failed. Returning unminified contents.
(74,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(88,17): run-time error CSS1039: Token not allowed after unary operator: '-sub-color'
(93,23): run-time error CSS1039: Token not allowed after unary operator: '-main-font'
(108,23): run-time error CSS1039: Token not allowed after unary operator: '-sub-font'
(122,22): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(201,17): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(225,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(252,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(264,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(265,24): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(283,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(404,17): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(421,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(433,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(434,24): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(579,17): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(606,23): run-time error CSS1039: Token not allowed after unary operator: '-sub-font'
(614,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(615,24): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(622,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(641,28): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
 */
.btn-readmore{
    text-align: center;
    margin-top: 15px;
    display: none;
}
/*----------------------------------
Banner
----------------------------------*/

.banner {
    clear: right;
}

.banner .overlay {
    background-color: rgba(4, 9, 30, 0.5);
    width: 100%;
    height: 650px;
    position: relative;
}

.banner-main .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    left: 10%;
    color: #fff;
    background-color: rgba(183, 17, 26, 0.2);
}

.banner-main .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    right: 10%;
    color: #fff;
    background-color: rgba(183, 17, 26, 0.2);
}

.banner-main .owl-dots {
    position: relative;
    top: -60px;
}

.banner-main .owl-dots .owl-dot span {
    background-color: rgba(183, 17, 26, 1);
    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;
}

.banner-main .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: rgba(183, 17, 26, 1);
    border-color: rgba(183, 17, 26, 1);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.banner-main .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;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: var(--main-color);
}

.banner-caption {
    padding: 130px 0;
    color: #fff;
}

.banner-caption h1 {
    font-size: 60px;
    font-weight: bold;
}

.banner-caption h1 span {
    color: var(--sub-color);
}

.banner-caption h2 {
    font-size: 60px;
    font-family: var(--main-font);
    font-weight: 400;
}

.banner-caption p {
    font-size: 20px;
    margin-top: 20px;
    color: #fff;
}

/*----------------------------------
Banner
----------------------------------*/

.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 {
    margin-bottom: 30px;
    width: 60%;
    font-size: 18px;
    margin: 0 auto;
    color: #959994;
}

/*----------------------------------
Home-product
----------------------------------*/

.home-product {
    padding: 40px 0;
}

.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
----------------------------------*/

/*----------------------------------
Home-news
----------------------------------*/

.home-news {
    color: #fff;
    position: relative;
    background-attachment: fixed !important;
}

.home-news .overlay {
    padding: 60px 0 70px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
}

.home-news .home-title {
    margin-bottom: 30px;
    color: #FFF;
}

.home-news .home-title::before {
    margin: 0 auto;
    background-color: #fff;
}

.home-news .news-i-img-ct {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    display: block;
    border-radius: 5px;
}

.home-news .news-i-img {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    border-radius: 5px;
}

.home-news .news-items:hover .news-i-img, .home-news .news-items:focus .news-i-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-news .news-i-infor {
    text-align: left;
    padding: 15px;
    border-radius: 5px;
    color: #000;
    background: #fff;
    position: relative;
    z-index: 10;
    margin: -40px 15px 0;
    box-shadow: 0 30px 50px rgba(0, 0, 0, .03);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    min-height: 210px;
}

.home-news .news-i-infor .news-i-date {
    font-size: 14px;
}

.home-news .news-i-infor .news-i-date i {
    margin-right: 5px;
}

.home-news .news-i-infor h4 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
    margin-top: 10px;
    max-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-news .news-i-infor p {
    color: #555;
    text-overflow: ellipsis;
    max-height: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.home-news .news-items:hover .news-i-infor, .home-news .news-items:focus .news-i-infor {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .09);
}

.home-news .news-items:hover .news-i-infor h4, .home-news .news-items:focus .news-i-infor h4 {
    color: var(--main-color);
}

.sizeH {
    height: 650px;
}

/*----------------------------------
Team-member
----------------------------------*/

.home-person-wrapper .owl-dots {
    position: relative;
    top: 30px;
}

.home-person-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-person-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);
}
.team-section {
    margin: 60px 0 70px;
}

.team-memmber {
    display: block;
    width: 90%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.team-memmber .img-item {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.team-item {
    position: relative;
    overflow: hidden;
}

.team-item img {
    min-width: 100%;
}

.team-meta {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    padding: 27px 0 26px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(183, 17, 26, 0.6);
    transition: all 0.4s;
}

.team-meta h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.team-meta p {
    font-size: 12px;
    margin-bottom: 0;
    color: #fff;
}

.team-meta .tm-social {
    padding-top: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.team-meta .tm-social a {
    color: #fff;
    width: 30px;
    height: 30px;
    padding-top: 5px;
    margin: 0 5px;
    font-size: 14px;
    display: inline-block;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.team-meta .tm-social a:hover {
    color: rgba(196, 166, 74, 1);
    background: #fff;
}

/*----------------------------------
Team-member
----------------------------------*/

/*----------------------------------
Testimonial
----------------------------------*/

.feedback {
    padding: 60px 0;
}

.home-subtitle {
    color: #ccc;
    margin-bottom: 10px;
}

.feedback-content {
    color: #222;
    border: 1px solid #ccc;
    padding: 25px 15px 30px;
}

.feedback-objects {
    margin-top: 60px;
}

.feedback-content p i {
    color: #222;
    font-size: 20px;
}

.feedback-txt {
    text-align: justify;
    margin-top: 10px;
    line-height: 1.75;
    /* margin-bottom: 10px;
    overflow: hidden;
    min-height: 100px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical; */
    /* text-align: center; */
}
.rm-link{
    color: var(--main-color) !important;
}
.feedback-infor {
    text-align: center;
}

.feedback-avatar .avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 auto;
}

.avatar .avatar-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-color: #fff;
}

.test-main-infor p {
    font-weight: bold;
    font-size: 14px;
    margin: 10px 0;
    font-family: var(--sub-font);
}

.feedback-objects .owl-nav.disabled+.owl-dots {
    margin-top: 25px;
}

.feedback-objects .owl-dots .owl-dot.active span, .feedback-objects .owl-dots .owl-dot:hover span {
    background-color: var(--main-color);
    border-color: var(--main-color);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.feedback-objects .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);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin: 5px;
}

/*----------------------------------
Testimonial
----------------------------------*/

.counter {
    background-color: var(--main-color);
}

.counter h4 {
    font-size: 30px;
    color: #fff;
    font-weight: 300;
}

.counter p {
    margin-top: 10px;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

.counter .overlay {
    padding: 80px 0;
    background-color: rgba(183, 17, 26, 0.8);
    width: 100%;
}

@media (max-width: 1200px) {
    .home-product-wrapper .owl-nav button.owl-prev, .home-product-wrapper .owl-nav button.owl-next {
        display: none;
    }
    .banner-caption h1, .banner-caption h2 {
        font-size: 50px;
    }
}

@media (max-width: 320px) {
    .home-title {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }
}
    
@media (max-width: 991px) {
    .btn-readmore{
        display: block;
    }
    .count-item{
        margin-bottom: 30px;
      }
      .counter .overlay{
        padding: 50px 0;
      }
    .banner-caption h1, .banner-caption h2 {
        font-size: 40px;
    }
    .sizeH {
        height: 500px;
    }
    .home-service .service-items .ser-img {
        margin-bottom: 30px;
        height: 150px;
    }
    .home-p-img-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .banner-caption h1, .banner-caption h2 {
        font-size: 25px;
    }
    .sizeH {
        height: 400px;
    }
    .banner-caption {
        padding: 100px 0;
    }
    .home-product{
        padding: 0 0 40px;
    }
    .home-title-b{
        font-size: 14px;
    }
    .home-title{
        font-size: 24px;
    }
    .team-memmber{
        width: 100%;
    }
}

@media (max-width: 575px) {
    .sizeH {
        height: 400px;
    }
    .home-news .news-i-img-ct{
        height: 200px;
    }
    .home-news .news-i-infor p{
        color: #555;
        text-overflow: ellipsis;
        max-height: 44px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .home-news .news-i-infor{
        min-height: 180px;
    }
    .home-title{
        font-size: 20px;
    }
    .home-title-b{
        width: 100%;
    }
}   
