
.product-list::before {
    content: '';
    width: 392px;
    height: 392px;
    position: absolute;
    background: var(--color1);
    right: 0;
    left: 0;
    top: -250px;
    margin: auto;
    border-radius: 50%;
    filter: blur(250px);
    z-index: -1;
}

.product-list-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.product-list-title b {
    font-weight: 700;
    color: var(--color1);
}

.product-list-title strong {
    font-weight: 700;
    color: var(--color1);
}

.product-list-title span {
    color: var(--color1);
}

@media (max-width:767px) {

    .banner-wrapper-title {
        font-size: 18px;
    }

    .banner-wrapper-text {
        width: 100%;
        font-size: 14px;
    }

    .banner-wrapper-btn {
        min-width: unset;
        font-size: 14px;
        height: 42px;
    }

    .banner-wrapper {
        height: auto;
        padding: 30px 0;
    }

    .product-list {
        padding-top: 0;
    }

    .product-list-title {
        font-size: 18px;
        margin-bottom: 0;
    }

}


/* breadcrumb */

.breadcrumb {
    font-size: 14px;
    margin: 0;
    padding: 0;
    background: transparent;
    margin-top: 20px;
    height: 20px;
    margin-bottom: 20px;
}

li.breadcrumb-item a {
    color: #7D7D7D;
}

.breadcrumb-item.active a {
    color: #000;
}

li.breadcrumb-item a:hover {
    color: var(--color2);
}

@media (max-width:767px) {
    li.breadcrumb-item {
        white-space: nowrap;
    }

    .breadcrumb {
        font-size: 12px;
        flex-wrap: nowrap;
        overflow: auto;
    }
}


/* pagination */


.pagination {
    justify-content: center;
    padding-top: 60px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.page-link {
    width: 38px;
    height: 38px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    margin: 0 5px;
    background: unset;
    padding-top: 10px;
    background: #0000000D;
    border: 0;
    border-radius: 12px !important;
    transition: 0.3s;
}

a.page-link:hover {
    background: var(--color1);
    color: #fff;
}


.page-item:first-child .page-link {
    margin-right: 6px;
}

span.page-link:hover {
    background: #fff;
    color: var(--color1);
}

.page-link:focus {
    box-shadow: unset;
}

.page-item.active .page-link {
    color: #fff;
    background-color: var(--color1);
}

.page-item-title .page-link {
    height: 38px;
    font-size: 14px;
    width: 38px;
    color: var(--color1);
}

.page-item-title .page-link:hover {
    background: var(--color1);
    color: #fff;
}

@media (max-width:767px) {
    .pagination {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .page-link {
        margin: 0;
    }

    .page-link span {
        display: none;
    }


    .page-item-title {
        display: none;
    }

    .page-link {
        width: 30px;
        height: 30px;
        margin: 0 3px;
    }

}


/* blog list  */

.card-news {
    border-radius: 24px;
    display: block;
    padding: 24px;
    background: #F5F5F5;
}

.card-news-img-body {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.card-news-img-body:hover img {
    transform: scale(1.05);
}

.card-news-img {
    width: 100%;
    height: 214px;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-news-title {
    font-size: 20px;
    color: #000;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    margin-top: 20px;
    font-weight: 700;
}

.card-news-mute {
    text-align: end;
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.card-news-text {
    color: #000;
    margin-top: 10px;
    line-height: 1.7;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    height: 54px;
}

.card-news-flex {
    border-top: 1px solid #00000045;
    margin-top: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #00000045;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 20px 0;
    font-size: 14px;
    font-weight: bold;
}

.card-news-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color1);
    gap: 5px;
    transition: 0.3s;
    font-weight: 700;
    border-bottom: 1px solid var(--color1);
    padding-bottom: 10px;
    width: max-content;
    margin: auto;
    margin-top: 10px;
}

.card-news-btn:hover {
    color: #000;
    border-color: #000;
}

.backgrand {
    position: relative;
    padding-top: 15px;
}

.backgrand::before {
    content: '';
    width: 392px;
    height: 392px;
    position: absolute;
    background: #ff912c;
    right: 0;
    top: -250px;
    margin: auto;
    border-radius: 50%;
    filter: blur(250px);
    z-index: -1;
    max-width: 100%;
}


@media (max-width:767px) {

    .backgrand {
        overflow: hidden;
    }

    .card-news {
        padding: 15px;
    }

    .card-news-img {
        height: 158px;
    }

    .card-news-title {
        font-size: 16px;
    }

    .card-news-flex {
        font-size: 12px;
    }

    .card-news-text {
        font-size: 14px;
        margin-top: 5px;
        height: 46px;
    }

    .card-news-btn {
        font-size: 14px;
    }
}




.blog-img {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    display: block;
    margin: auto;
    margin-bottom: 15px;
}


.blog-content p {
    font-size: 16px;
    line-height: 2.14;
    text-align: justify;
    color: #000;
    margin-top: 15px;
}

.blog-content img {
    max-width: 100%;
    border-radius: 8px;
    display: block;
    margin: auto;
    margin: 20px auto;
}

.blog-content video {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    background: #000;
    max-height: 300px;
}

.blog-content table,
td,
th {
    border: solid 1px #c8c8c8;
    text-align: center;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
}

.blog-title {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-top: 35px;
    margin-bottom: 20px;
}

.blog-title h1 {
    font-size: 24px;
    font-weight: 700;
}

.blog-title h2 {
    font-size: 24px;
    font-weight: 700;
}

.blog-info {
    font-size: 18px;
    margin-top: 24px;
}

.blog-mute {
    color: #999999;
    font-size: 16px;
    margin-top: 15px;
}

.blog-box {
    border: 2px solid #E6E8E8;
    border-radius: 15px;
    background: #fff;
}

.blog-box-head {
    padding: 20px;
    border-bottom: 2px solid #E6E8E8;
    font-size: 18px;
    font-weight: 600;
}

.blog-box-body {
    padding: 20px;
}

.blog-box-item {
    border-bottom: 1px solid #E6E8E8;
    padding-bottom: 15px;
    margin-bottom: 15px !important;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    line-height: 1.7;
    background: #F5F5F5;
    border-radius: 12px;
    padding: 16px;
}

.blog-box-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.blog-box-item img {
    width: 75px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 15px;
}


.b-comment {
    margin-top: 50px;
    background: #fff;
    border: 1px solid #0000001A;
    box-shadow: 0px 2px 4px 0px #0000001F;
    border-radius: 15px;
    padding: 20px;
    margin-top: 25px;
}

.comment-item {
    margin-top: 20px;
    border: 2px solid #E6EAED;
    padding: 20px;
    border-radius: 20px;
}


.comment-item-info {
    display: flex;
    align-items: center;
}

.comment-item-info i {
    background: #C9C9C9;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    margin-left: 15px;
}

.comment-item-user {
    font-size: 16px;
    font-weight: 600;
    color: #7A7A7A;
    margin-left: 10px;
}

.comment-item-date {
    font-size: 14px;
    color: #7A7A7A;
}

.comment-item-text {
    font-size: 14px;
    margin-top: 15px;
}

.comment-item-action {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.comment-item-action button {
    margin: 0;
    padding: 0;
    line-height: 1;
    margin-left: 15px;
    border: 0;
    background: transparent;
    color: #7A7A7A;
    display: flex;
    align-items: center;
}

.comment-item-action button:hover {
    color: #000;
}

.comment-head {
    color: #292D32;
    font-size: 16px;
    font-weight: 700;
}

.com-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-top: 10px;
}

.com-box-text {
    font-weight: 300;
    margin-top: 10px;
    color: #000;
}

.com-box-form {
    display: flex;
    flex-direction: column;
}

.com-box-form input {
    height: 50px;
    border: 1px solid #00000033;
    margin-top: 5px;
    padding: 10px;
    outline-color: var(--color1);
    border-radius: 10px;
    background: #F0F0F0;
}

.com-box-form textarea {
    border: 1px solid #00000033;
    margin-top: 5px;
    padding: 10px;
    outline-color: var(--color1);
    border-radius: 10px;
    background: #F0F0F0;
}

.com-box-form label {
    font-size: 18px;
}

.com-box-code input {
    border: 0;
    height: 40px;
    border: 1px solid #00000033;
    margin-right: 10px;
    text-align: center;
    outline-color: var(--color1);
    width: 100%;
    border-radius: 10px;
    max-width: 150px;
    background: #F0F0F0;
}

.com-box-code img {
    width: 140px;
}

.com-box-code {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.com-box-recode {
    font-size: 14px;
    margin-top: 15px;
    display: block;
    color: var(--color1);
}

.com-box-submit {
    height: 50px;
    background: var(--color1);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
    border-radius: 50px;
    transition: 0.3s;
    margin-top: 15px;
    border: 1px solid var(--color1);
}

.com-box-submit:hover {
    background: #fff;
    color: var(--color1);
}

.wrapper-star input {
    display: none;
}

.wrapper-star label {
    margin: 0;
}

i.icon-star-empty {
    color: #7D7D7D;
}

i.icon-star {
    color: #f9bc00;
}

.comment-form-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



@media (max-width:767px) {

    .blog-content p {
        font-size: 13px;
    }

    .blog-box {
        margin-top: 17px;
    }

    .blog-title {
        font-size: 18px;
        margin-top: 20px;
    }

    .blog-title h1 {
        font-size: 18px;
    }

    .blog-title h2 {
        font-size: 18px;
    }

    .blog-info {
        font-size: 16px;
        margin-top: 15px;
    }

    .blog-mute {
        color: #999999;
        font-size: 14px;
    }

    .comment-item-user {
        font-size: 12px;
    }

    .comment-item-date {
        font-size: 12px;
    }

    .comment-item-text {
        font-size: 12px;
        margin-top: 10px;
    }

    .comment-item {
        margin-top: 15px;
        padding: 15px;
    }

    .com-box-title {
        font-size: 14px;
    }

    .com-box-text {
        margin-top: 10px;
        font-size: 14px;
    }

    .com-box-form label {
        font-size: 14px;
    }

    .com-box-form input {
        height: 40px;
        margin-top: 0px;
    }

    .com-box-mute {
        font-size: 12px;
    }

    .comment-form-rate-text {
        font-size: 14px;
    }

    .com-box-recode {
        margin-top: 10px;
        font-size: 14px;
        display: block;
    }


    .com-box-submit {
        height: 38px;
        padding: 8px;
        margin-top: 10px;
        margin-top: 0;
        font-size: 14px;
    }
}




.contact-box-title {
    font-size: 18px;
    border-bottom: 1px solid var(--color2);
    color: #323232;
    margin-bottom: 25px;
    font-weight: 600;
}

.responsive-map {
    overflow: hidden;
    padding-bottom: 280px;
    position: relative;
    height: 0;
    border-radius: 10px;
    height: 100%;
}

.responsive-map iframe {
    left: 0;
    top: 0;
    height: 280px;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 10px;
}

.contact-us-form-title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--color2);
    padding-bottom: 5px;
    color: var(--color2);
}

.contact-us-form input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
    background-color: #eee;
}

.contact-us-form textarea {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
    background-color: #eee;
}


.contact-us-form label {
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    color: #979797;
}

.contact-us-form input:focus {
    border-color: var(--color2);
}

.contact-us-form textarea:focus {
    border-color: var(--color2);
}

.contact-us-form button {
    background: var(--color1);
    border: 1px solid var(--color1);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    transition: 0.3s;
    width: 181.9px;
    height: 45.5px;
    border-radius: 40px;
}

.contact-us-form button:hover {
    background: transparent;
    color: var(--color1);
}


@media (max-width:767px) {

    .responsive-map {
        padding-bottom: 200px;
    }

    .responsive-map iframe {
        height: 200px;
    }

    .contact-box {
        padding: 15px;
    }

    .contact-box-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .contact-us-form label {
        font-size: 14px;
    }

    .contact-us-form button {
        height: 36px;
        width: auto;
        font-size: 12px;
    }


}

.contact-us-item {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.contact-us-item-back i {
    transition: 0.3s;
    filter: drop-shadow(4px 6px 6px #0000006b);
}

.contact-us-item-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    transition: 0.3s;
    color: #666;
}

.contact-us-item:hover .contact-us-item-title {
    color: var(--color2);
}

.contact-us-item:hover .contact-us-item-back i {
    transform: scale(1.1);
}

.contact-us-item-back {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    width: 89px;
    height: 88.1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    padding-top: 12px;
    color: #000;
}

@media (max-width:767px) {
    .contact-us-item-title {
        margin-top: 10px;
        text-align: center;
        font-size: 12px;
    }

    .contact-us-item {
        margin-top: 20px;
    }

    .contact-us-item-back {
        width: 60px;
        height: 60px;
        font-size: 25px;
        padding-top: 8px;
    }
}
.sub-item{
    display: flex;
    flex-direction: column;
}
.sub-item img{
    width: 120px;
    text-align: center;
    margin: auto;
}
.sub-item p{
    text-align: center;
    color: #000;
    padding: 15px;
}

