@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --thin: 100;
    --extralight: 200;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --extrabold: 800;
    --black: 900;
    --color1: #eeeae9;
    --color2: #231f20;
    --color3: #003da5;
    --color4: #7f7f7f;
    --color5: #fff;
    --color6: #ededee;
     --poppins: 'Kanit';
}
ul{
    margin: 0;
}
#ButtonMenu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    .hamburger{
        border: 0;
        background-color: transparent;
        cursor: pointer !important;
        span{
            width: 30px;
            height: 2px;
            background-color: var(--color2);
            display: block;
            margin-bottom: 5px;
            opacity: 1;
            transition: all .3s ease;
        }
        span:last-of-type{
            margin-bottom: 0;
        }
    }
    .hamburger:hover{
        span{
            opacity: .5;
            transition: all .3s ease;
        }
    }
}
#MobileMenu{
    position: absolute;
    top: 0;
    left: -350px;
    z-index: 999;
    background-color: var(--color5);
    height: 100vh;
    width: 350px;
    transition: all .3s ease;
    overflow-y: scroll;
    .closeButton{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-end;
        padding: 30px 50px 0;
        position: relative;
        span{
            height: 2.5px;
            width: 30px;
            background-color: var(--color2);
            display: block;
            transform-origin: center;
            position: absolute;
            right: 50px;
        }
        .closeicon{
            cursor: pointer !important;
            border: 0;
            background-color: transparent;
            span:first-of-type{
                transform: rotate(0deg);
                transition: all .3s ease;
            }
            span:last-of-type{
                transform: rotate(0deg);
                transition: all .3s ease;
            }
        }
        .closeicon:hover{
            span:first-of-type{
                transform: rotate(-45deg);
                transition: all .3s ease;
            }
            span:last-of-type{
                transform: rotate(45deg);
                transition: all .3s ease;
            }
        }
    }
    .logo{
        padding: 40px 50px;
    }
    nav{
        > ul{
            list-style: none;
            flex-direction: column;
            padding: 0 50px;
            margin: 0;
            > li{
                > a{
                    padding: 10px 0;
                    display: block;
                }
                > ul{
                    list-style: disc;
                    flex-direction: column;
                    display: flex;
                    > li{
                        > a{
                            display: block;
                            padding: 10px 0;
                        }
                        > ul{
                            li{
                                > a{
                                    display: block;
                                    padding: 10px 0;
                                }
                            }
                        }
                    }
                }
            }
        }
        ul{
            li{
                a{
                    color: var(--color2);
                    transition: all .3s ease;
                    font-family: var(--poppins);
                    font-size: 15px;
                    font-weight: var(--light);
                }
                a:hover{
                    color: var(--color3);
                    transition: all .3s ease;
                }
            }
        }
    }
}
#overlay{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
}
.lstee_theme_body{
    margin: 0 !important;
    .container{
        max-width: 1190px;
        margin: 0 auto;
    }
    .flex{
        display: flex;
    }
    .none{
        display: none;
    }
    .jbetween{
        justify-content: space-between;
    }
    .acenter{
        align-items: center;
    }
    a{
        text-decoration: none;
    }
    p,h3{
        margin: 0;
    }
    #Menu{
        padding: 15px 20px;
        background-color: var(--color5);
        .mmt-main-menu{
            ul{
                list-style: none;
                padding: 0;
                margin: 0;
                li{
                    position: relative;
                    padding: 25px;
                    a{
                        font-family: var(--poppins);
                        font-weight: var(--regular);
                        color: var(--color2);
                        font-size: 20px;
                        transition: all .3s ease;
                    }
                    > .sub-menu{
                        position: absolute;
                        background-color: #f6f6f6;
                        opacity: 0;
                        visibility: hidden;
                        transition: all .3s ease;
                        z-index: 999;
                        left: 0;
                        /* box-shadow: 2px 2px 4px 0 rgba(72,72,72,.5); */
                        width: auto;
                        min-width: 140px;
                        margin-top: 45px;
                        li{
                            padding: 10px;
                            position: relative;
                            a{
                                color: var(--color2);
                                transition: all .3s ease;
                                white-space: nowrap;
                            }
                            > .sub-menu{
                                top: 0;
                                margin-top: 30px !important;
                                li{
                                    a{
                                        color: var(--color2);
                                        transition: all .3s ease;
                                        white-space: nowrap;
                                    }
                                }
                                li:hover{
                                    a{
                                        color: var(--color5);
                                        transition: all .3s ease;
                                    }
                                }
                            }
                        }
                        li:hover{
                            background-color: var(--color3);
                            transition: all .3s ease;
                            a{
                                color: var(--color5);
                                transition: all .3s ease;
                            }
                             > .sub-menu{
                                margin-top: 0 !important;
                             }
                        }
                    }
                }
                li:hover,li.current-menu-item,li.current-menu-parent{
                    > a{
                        color: #00aced;
                        transition: all .3s ease;
                    }

                }
                .menu-item-has-children:hover{
                    > .sub-menu{
                        opacity: 1;
                        visibility: visible;
                        margin-top: 25px;
                        transition: all .3s ease;
                    }
                }
            }
            ul#menu-kmk-menu,ul#menu-kmk-menu-en{
                > li.menu-item-has-children{
                    > ul.sub-menu{
                        left: 50%;
                        transform: translateX(-50%);
                        > li{
                            padding: 20px 50px !important;
                            > a{
                                font-family: var(--poppins);
                                font-size: 21px;
                                font-weight: var(--regular);
                                line-height: 43px;
                                color: #1c1d21;
                            }
                            > a:hover{
                                color: #00aced !important;
                            }
                            > ul.sub-menu{
                                position: static;
                                visibility: visible;
                                opacity: 1;
                                margin-top: 0 !important;
                                background-color: transparent !important;
                                > li{
                                    padding: 0;
                                    > a{
                                        font-family: var(--poppins);
                                        font-size: 21px;
                                        font-weight: var(--light);
                                        line-height: 43px;
                                        color: #58595b;
                                    }
                                    > a:hover{
                                        color: #00aced !important;
                                    }
                                }
                                > li{
                                    background-color: transparent !important;
                                }
                            }
                        }
                        > li:hover{
                            background-color: transparent !important;
                        }
                    }
                }
                > li.menu-item-has-children:hover{
                    > ul.sub-menu{
                        visibility: visible;
                        opacity: 1;
                    }
                }
            }
        }
        .polylang_langswitcher{
            list-style: none;
            display: flex;
            padding: 0;
            /* padding-right: 50px; */
            li{
                margin-right: 4px;
                a{
                    img{
                        width: 20px !important;
                        height: 15px !important;
                    }
                }
            }
            li:last-of-type{
                margin-right: 0;
            }
            li.current-lang{
                img{
                    box-shadow: 5px 5px 5px #666;
                }
            }
        }
    }
    footer{
        .KMKFooter{
            text-align: right;
            position: relative;
            height: 418px;
            overflow: hidden;
            iframe{
                width: 70vw;
                height: 418px;
            }
            .contact{
                position: absolute;
                text-align: left;
                top: 0;
                width: 100%;
                height: 100%;
                padding-top: 90px;
                .container{
                    z-index: 2;
                    position: relative;
                    padding-left: 20px;
                    h3{
                        font-family: var(--poppins);
                        font-weight: 500;
                        font-size: 50px;
                        line-height: 63px;
                        text-transform: uppercase;
                        color: #000;
                        margin-bottom: 15px;
                    }
                    .location,.phone,.fax,.mail{
                        display: flex;
                        align-items: center;
                        gap: 20px;
                        span{
                            font-family: var(--poppins);
                            font-weight: 300;
                            font-size: 18px;
                            line-height: 22px;
                            color: #000;
                        }
                    }
                    > div{
                        margin-bottom: 10px;
                    }
                    > div:last-of-type{
                        margin-bottom: 0;
                    }
                }
            }
            .contact::after{
                content: '';
                display: block;
                background-color: #ffcb05;
                width: 53%;
                height: 100%;
                position: absolute;
                top: 0;
                clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
            }
        }
        .copyright{
            padding: 5px 0;
            p{
                font-family: var(--poppins);
                font-size: 23px;
                text-align: center;
                font-weight: 300;
                line-height: 63px;
                color: #000;
            }
        }
    }
}
#ProductLists{
    .lists{
        width: 31.50%;
        display: inline-block;
        margin: 0 10px 50px;
        .image{
            position: relative;
            /* height: 258px; */
            a{
                display: flex;
                img{
                    border: 0px solid transparent;
                    border-radius: 10px;
                    width: 100%;
                }
                .overlay{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0,61,165,.5);
                    border: 0px solid transparent;
                    border-radius: 10px;
                    opacity: 1;
                    transition: all .3s ease;
                }
            }
        }
        .content{
            h2{
                font-family: var(--poppins);
                color: var(--color2);
                font-size: 25px;
                font-weight: var(--medium);
                margin: 30px 0 3px 0;
                transition: all .3s ease;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis;
                /* display: none; */
            }
            p{
                font-family: var(--poppins);
                font-weight: var(--light);
                color: var(--color2);
                font-size: 15px;
                display: none;
            }
        }
    }
    .lists:nth-of-type(3n+1){
        margin-left: 0;
    }
    .lists:nth-of-type(3n){
        margin-right: 0;
    }
    .lists:hover{
        .overlay{
            opacity: 0 !important;
            transition: all .3s ease;
        }
        h2{
            color: var(--color3);
            transition: all .3s ease;
        }
    }
}
.MMTform{
    input,textarea{
        border: 0 !important;
        border-bottom: 1px  solid var(--color2) !important;
        font-family: var(--poppins);
    }
    button.forminator-button.forminator-button-submit{
        background-color: var(--color6);
        font-family: var(--poppins);
        color: var(--color2);
        transition: all .3s ease;
    }
    button.forminator-button.forminator-button-submit:hover{
        background-color: #00aced;
        font-family: var(--poppins);
        color: var(--color5);
        transition: all .3s ease;
    }
}
.KMKButton{
    .elementor-button-icon{
        background-color: #ffcb05;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        transition: all .3s ease;
        svg{
            width: 15px;
            height: 15px;
            transition: all .3s ease;
        }
    }
    a:hover{
        .elementor-button-icon{
            background-color: #00aced;
            transition: all .3s ease;
            svg{
                fill: #fff !important;
                transition: all .3s ease;
            }
        }
    }
}
.BProduct{
   clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.BG1,.BG2,.BG4{
    position: relative;
}
.BG1::after,.BG2::after,.BG4.e-flex::before,.BG4::after{
    display: block;
    position: absolute;
    animation: floatY 2.5s ease-in-out infinite;
}
.BG1::after{
    content: url(/wp-content/uploads/2025/08/bg1.png);
    top: 80px;
    left: 20px;
}
.BG2::after{
    content: url(/wp-content/uploads/2025/08/bg3.png);
    top: 190px;
    left: 20px;
}
.BG3{
    img{
        animation: floatY 2.5s ease-in-out infinite;
    }
}
.BG4.e-flex::before{
    content: url(/wp-content/themes/lstee/core/asset/img/bg4-1.png);
    top: 80px;
    left: 20px;
}
.BG4::after{
    content: url(/wp-content/themes/lstee/core/asset/img/bg4-2.png);
    bottom: 80px;
    right: 20px;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* ขึ้น */
  }
  100% {
    transform: translateY(0); /* ลง */
  }
}
:lang(th){
    .th{
        display: inline-block;
    }
    .en{
        display: none;
    }
}
:lang(en-us){
    .th{
        display: none;
    }
    .en{
        display: inline-block;
    }
}
.breadcamp{
    text-align: right;
    span{
        font-family: var(--poppins);
        font-weight: var(--light);
        color: #58595b;
        line-height: 40px;
        font-size: 16px;
    }
    span:last-of-type{
        color: #00adee;
    }
    span::before{
        content: '/';
        display: inline-block;
        margin: 0 5px;
        color: #58595b !important;
    }
    span:first-of-type::before,span:nth-of-type(2)::before{
        display: none;
    }
}
.multiply{
    img{
        mix-blend-mode:multiply;
    }
}
.kmkslide{
    .swiper{
        width: 100%;
        height: 100%;
        .swiper-slide{
            text-align: center;
            font-size: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-size: cover;
            background-position: center;
            img{
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;

            }
        }
    }
    .swiper{
        width: 100%;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .mySwiper2{
        height: auto;
        width: 100%;
        padding-bottom: 80px;
        .swiper-slide{
            img{
                width: auto !important;
                height: 820px;
                box-shadow: 1px 1px 20px #999;
            }
        }
    }
    .mySwiper{
        height: 20%;
        box-sizing: border-box;
        padding: 10px 0;
        .swiper-slide{
            width: auto !important;
            height: 260px;
            overflow: hidden;
            img{
                height: 100%;
                width: auto;
            }
        }
        .swiper-slide-thumb-active{
            position: relative;
        }
        .swiper-slide-thumb-active::after{
            content: '';
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgba(215,82,143,.33);
        }
    }
    .swiper-button-next,.swiper-button-prev{
        color: #000 !important;
    }
    .swiper-button-next:after,.swiper-button-prev:after{
        font-size: 30px;
    }
}
.strong{
    p{
        strong{
            font-weight: var(--semibold);
        }
    }
}
a{
    cursor: pointer !important;
}