.hero {
    width: 100%;
    background-color: #1f2937;
    height: 750px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide .desc {
    display: flex;
    align-items: center;
}
.swiper-slide .desc .desc_inner {
    width: 100%;
    max-width: var(--max_width);
    margin: 0 auto;

    padding: 0 12px;
}
.swiper-slide .desc .desc_inner .btn {
    color: #FFF;
    margin-top: 30px;
    background-color: rgba(232, 138, 17, .5);
}
.swiper-slide .desc .desc_inner .title div:nth-child(1) {
    font-family: 'HarmonyOS Sans SC Black' !important;
    font-size: 80px;
    color: #e98a11 !important;
    line-height: 80px;
    margin-bottom: 20px;
}

.swiper-slide .desc .desc_inner .title div:nth-child(2) {
    font-family: 'HarmonyOS Sans SC Medium' !important;
    font-size: 28px;
    color: #FFF !important;
    font-weight: normal;
    margin-bottom: 20px;
}

.swiper-slide .desc .desc_inner .subtitle {
    font-family: 'HarmonyOS Sans SC Medium' !important;
    font-size: 28px;
    color: #FFF;
}

.swiper-slide > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0,0,0,.6);
    text-align: left;
}
.swiper-slide .title {
    font-size: 50px;
    font-weight: bold;
    color: #FFF;
}
.swiper-slide .title > div:nth-child(2) {
    color: var(--primary_color) !important;
}


@media screen and (max-width: 991px) {
    .hero {
        height: 400px;
    }
    .swiper-slide .title {
        font-size: 26px;
    }
    .swiper-slide .subtitle {
        font-size: 14px;
    }
}




.msg {
    height: 100px;
    background-color: var(--primary_color);
}
.msg .msg_inner {
    height: 100%;
    display: flex;
    align-items: center;
    color: #FFF;
    justify-content: space-between;
    padding: 15px 12px;
    font-family: 'HarmonyOS Sans SC Regular' !important;
    font-size: 24px !important;

}
.msg .msg_inner a {
    color: #de8411;
    padding: 5px 10px;
    background-color: #FFF;
    font-size: 14px !important;
}
.product {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.h2 {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}
.line.h2:after {
    content: '';
    display: inline-block;
    height: 2px;
    width: 150px;
    background-color: #626365;
    position: absolute;

    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.product_inner .list {
    max-width: 1200px;
    width: 100vw;
    padding: 40px 12px;
}
.product_inner .list .item {
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 387px;
    margin-bottom: 20px;
    border-radius: 10px;
}

@media screen and (max-width: 1068px){
    .product_inner .list .item {
        height: 600px;
    }
    .product_inner .list .item .font {
        width: 100% !important;
    }
    .product_inner .list .item:nth-child(odd) {
        flex-direction: column;
    }
    .product_inner .list .item:nth-child(even) {
        flex-direction: column-reverse;
    }

    .product_inner .list .item h1::after {
        width: 100% !important;
    }

    .product_inner .list .item p {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .listcard .list {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start !important;
        flex-wrap: nowrap;
    }

    .listcard .list .item {
        flex-shrink: 0;
        margin-bottom: 20px !important;
    }
    .listcard .list_warp {
        overflow-x: auto;
    }
    .product_inner .list .item .img {
        background-size: auto 100% !important;
    }
}
.product_inner .h2 {
    font-family: 'HarmonyOS Sans SC Bold' !important;
}
.product_inner .list .item .img {
    flex: 1;
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.product_inner .list .item .font {
    width: 400px;
    background-color: #eb950f;
    color: #FFF;

    padding: 40px 25px;
    overflow: hidden;
}

.product_inner .list .item .font p {
    transition: all .5s;
    opacity: 0;
    transform: translateY(calc(100% + 40px));
}
.product_inner .list .item .font h1 {
    font-size: 39px !important;
    margin-bottom: 0 !important;
}
.product_inner .list .item .font h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #FFF;
    margin-top: 20px;
    transition: all .3s;
}

.product_inner .list .item:hover h1::after {
    width: 100%;
}

.product_inner .list .item:hover p {
    opacity: 1;
    transform: translateY(0);
}

.listcard h2 {
    text-align: center;
}
.listcard {
    padding-top: 30px;
    padding-bottom: 80px;
    background-color: #FFF;
}
.listcard .list {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.listcard .list_warp {
    width: 100%;
}
.listcard .list .item {
    position: relative;
    width: 385px;
    height: 448px;
    border-radius: 10px;
    margin: 0 10px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;

}

.listcard .list .item .item_inner {
    border-radius: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*background-color: rgba(0,0,0,.6);*/

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.listcard .list .item .item_inner img {
    width: 80px;
}


.listcard .list .item .item_inner span {
    font-size: 25px;
    font-weight: bold;
    margin-top: 20px;
    color: #FFF;
}
.infocard {
    padding-top: 30px;
    background-color: #FFF;
    padding-bottom: 50px;
}

.infocard img {
    width: 100%;
    height: 448px;
    border-radius: 10px;
}

.infocard .content {
    margin-top: 30px;
    line-height: 35px;
    color: #383635;
    font-family: 'HarmonyOS Sans SC Light';
    font-size: 21px;
}

.contactus {
    padding: 40px 0;
    width: 100%;
    background-color: #e98a11;
    color: #FFF;
    height: 210px;
    font-family: 'HarmonyOS Sans SC Light' !important;
}

.contactus_inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}
.contactus_inner .left {
    width: 650px;
}
.contactus_inner .right {
    flex: 1;
}

.contactus_inner .right {
    display: grid;
    gap: 0 5px;
    grid-template-areas:
    "top"
    "bottom";
    font-size: 16px !important;
}
.contactus_inner .right .top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 0 5px;
    grid-template-areas:
    ". . .";
    grid-area: top;
}
.contactus_inner .right .top input {
    width: 172px
}
.contactus_inner .right .bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-template-areas:
    ". .";
    gap: 0 5px;
    grid-area: bottom;
}

@media screen and (max-width: 1068px) {
    .contactus {
        padding: 15px 0;
    }
    .contactus_inner {
        display: flex;
        flex-direction: column;
    }
    .contactus_inner .left {
        width: 100%;
        margin-bottom: 20px;
    }
    .contactus_inner .left span {
        font-size: 20px !important;
    }

    .contactus_inner .right {
        width: 100%;
    }


    .contactus_inner .right .top {
        display: flex;
        flex-direction: column;
        margin-bottom: 0 !important;
    }
    .contactus_inner .right .top input {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .contactus_inner .right .bottom {
        display: flex;
        flex-direction: column;
    }

    .contactus_inner .right .bottom textarea {
        width: 100%;
        flex: auto !important;
        margin-right: 0 !important;
    }
    .contactus_inner .right .bottom button {
        width: 100% !important;
        height: 40px;
        margin-top: 10px;
    }
}

.contactus_inner .left {
    font-size: 20px;
}

.contactus_inner .right .top {
    margin-bottom: 10px;
}

.contactus_inner .right input {
    border-radius: 5px;
    outline: none;
    padding: 0 10px;
    background-color: #FFF;
    height: 40px;
    color: #000;
}
.contactus_inner .right .bottom {
    display: flex;
}
.contactus_inner .right .bottom textarea {
    border-radius: 5px;
    padding: 10px;
    color: #000;
    flex: 1;
}

.contactus_inner .right .bottom button {
    width: 192px;
    background-color: #000;
    border-radius: 5px;
}

@media screen and (max-width: 1068px) {
    .swiper-slide .desc .desc_inner .title div:nth-child(1){
        font-size: 30px;
        line-height: 40px;
    }
    .swiper-slide .desc .desc_inner .title div:nth-child(2) {
        font-size: 20px;
    }
    .swiper-slide .desc .desc_inner .subtitle {
        font-size: 16px;
    }

    .msg .msg_inner {
        font-size: 15px !important;
    }

    .infocard .content {
        font-size: 14px;
        line-height: 25px;
    }

    .product_inner .list .item .font h1 {
        font-size: 24px !important;
    }

    .product_inner .list .item .font p {
        font-size: 14px !important;
    }
    .contactus {
        height: auto;
    }

    .contactus_inner .right .top > input {
        width: 100%;
    }

    .chino_menu_icon {
        text-align: center !important;
    }
    .chino_menu_icon .thb-widget-menu {
        display: flex !important;
        justify-content: center !important;
    }
    .listcard .list .item {
        width: 85% !important;
    }
    .listcard .list {
        padding: 0 12px !important;
    }
    .listcard .list .item {
        height: 361px !important
    }
    .infocard img {
        height: 150px !important;
    }

    .listcard .list .item .item_inner img {
        width: 65px;
    }
    .listcard .list .item .item_inner span {
        font-size: 20px;
    }

    .contactus_inner .right .bottom textarea {
        height: 100px;
    }
}
