:root {
    --default-color: 4, 20, 33;
    --text-color: rgb(4, 20, 33);
    --link-color: rgb(4, 20, 33);
    --default-bg: 255,255,255;

    --container-width: 1600px;
    --container-gutter: 16px;
    --container-gap: 15px;
    --shadow: rgba(0, 0, 0, 0) 0px 2px 15px, rgba(0, 0, 0, 0.2) 0px 4px 20px;
    --radius: 4px;
    --button-radius: 50px;
    --vertical-spacer: 40px;
    --box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;

    --video-height: 56.25vw;
}
@media (min-width: 751px) {
    :root {
        --container-gutter: 40px;
    }
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-gutter);
    padding-right: var(--container-gutter);
}

body {
    color: var(--text-color);
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: var(--link-color);
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    padding: 0;
}

.placehold{
    padding: 500px 0;
    background: rgba(4, 20, 33,0.05);
}

header{
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 26px 0;
    background: #fff;
}
header .logo img{
    width: 150px;
    height: auto;
}
header ul.menu{
    display: flex;
    justify-content: center;
    column-gap: 40px;
    row-gap: 20px;
    flex-wrap: wrap;
    margin: 0;
}
header ul.menu .submenu{
    display: none;
}
header ul.menu a{
    font-weight: 600;
    font-size: 16px;
    display: block;
    transition: transform .1s ease-in-out;
}
header ul.menu a span{
    margin-left: 5px;
}

header ul.menu a:after{
    content: "";
    display: block;
    height: 1px;
    background-color: var(--link-color);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .15s ease-in-out;
}
header ul.menu a:hover:after{
    transform: scaleX(1);
}

header ul.menu li:hover a:before{
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    height: 100%;
    margin-left: -25px;
    padding-left: 25px;
    padding-right: 45px;
    opacity: 0;
}

header ul.menu li .submenu.active{
    display: block;
}
@media(min-width:768px){
    header ul.menu li:hover .submenu{
        display: block;
    }
}

header ul.menu .submenu{
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 0;
    border: 1px solid rgba(var(--default-color),.1);
    transition: opacity .1s ease-in-out,visibility .1s ease-in-out,transform .15s ease-in-out;
}

header ul.menu .submenu ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
header ul.menu .submenu li{
    max-width: 200px;
    min-width: 165px;
}
header ul.menu .submenu li a{
    font-weight: 500;
}
header ul.menu .submenu li a img{
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .1s ease-out;
}
header ul.menu .submenu li a span{
    width: fit-content;
    margin: 0 auto;
    display: block;
}
header ul.menu .submenu li a:hover img{
    transform: scale(1.02);
}
header ul.menu .submenu a:after{
    content: unset;
}
header ul.menu .submenu li a span:after{
    content: "";
    display: block;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .15s ease-in-out;
}
header ul.menu .submenu li a span:hover:after{
    transform: scaleX(1);
}

header.transparent{
    margin-bottom: -105px;
    background: transparent;
}
header ul.menu a{
    color: currentColor;
}
header ul a svg{
    fill: currentColor;
}
header{
    color: #000;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border .15s ease-in-out;
}
header.transparent{
    color: #fff;
}
header.transparent.sticky,
header.transparent:hover{
    background: #ffffffd0;
    color: var(--text-color);
}

header ul.icons{
    display: flex;
    justify-content: flex-end;
    column-gap: 40px;
    row-gap: 20px;
    flex-wrap: wrap;
    margin: 0;
}
header ul.icons a{
    font-weight: 600;
    font-size: 16px;
    display: block;
    transition: transform .1s ease-in-out;
}
header ul.icons a{
    color: currentColor;
}

.menuClose{
    display: none;
}

.search{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .4);
    z-index: 6;
}
.search form{
    background: #fff;
    padding: 25px 0 30px;
}

.search form input{
    padding: 10px;
    font-size: 20px;
    border-radius: 0;
    background-color: transparent;
    outline: none;
    box-shadow: 0 .1px rgb(var(--default-color));
    border-width: 0 0 .1rem;
    border-bottom-color: rgb(var(--default-color));
    color: rgb(var(--default-color));
    transition: background-color .1s ease-in,box-shadow .1s ease-in;
}

.search form input:focus {
    border-color: transparent;
    box-shadow: 0 1.5px rgb(var(--default-color));
    outline: 0 none;
}
.search form button{
    background: transparent;
    border: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.search h5{
    margin: 0;
    font-weight: 400;
}

@media(min-width:768px){
    header .goBack{
        display: none;
    }
}

@media(max-width:768px){
    header ul.menu{
        /*display: none;*/
    }
    header .col-12{
        order: 3;
    }
    header ul.menu{
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--text-color);
        color: #fff;
        display: none;
        padding: 20px;
        flex-direction: column;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .menuClose{
        display: block;
        text-align: right;
        position: relative;
        padding-bottom: 20px;
    }
    .menuClose:after{
        content: '';
        position: absolute;
        left: -20px;
        width: 100vw;
        height: 1px;
        background: rgba(var(--default-bg),.2);
        top: 100%;
    }
    header ul.menu a:after{
        content: unset;
    }
    header ul.menu > li:not(.menuClose) > a{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    header ul.menu .submenu{
        top: 66px;
        height: calc(100vh - 66px);
        background: var(--text-color);
        color: #fff;
        padding: 20px;
    }
    header ul.menu .submenu img{
        display: none;
    }
    header ul.menu .submenu ul{
        flex-direction: column;
        justify-content: flex-start;
        flex-wrap: wrap;
        row-gap: 20px;
    }
    header ul.menu .submenu .container{
        max-width: unset;
        padding: 0;
        margin: 0;
    }
    header ul.menu .submenu li {
        max-width: unset;
        min-width: unset;
    }
    header ul.menu .submenu li a span{
        margin: 0;
    }
    header ul.menu li:hover a:before{
        content: unset;
    }
    header ul.menu li a{
        font-weight: 500;
    }
    header ul.menu .submenu li a svg{
        transform: rotate(90deg) scale(1.5);
        transition: transform .1s ease-in-out;
        margin-right: 5px;
    }
    header ul.menu .submenu li:first-child{
        margin-bottom: 15px;
    }
    header .logo img{
        height: 27px;
        width: auto;
    }
    header{
        padding: 18px 0;
    }
    header ul.icons{
        column-gap: 20px;
    }
}

.dark-color{
    color: var(--text-color) !important;
}
#home-slider,
.home-slider{
    width: 100%;
    position: relative;
}
.home-slider .slick-slide{
    position: relative;
}
.home-slider img{
    width: 100%;
    height: auto;
    display: block;
}

.home-slider .content{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    color: #fff;
}
.home-slider .content h3{
    font-size: 55px;
    font-weight: 400;
    color: currentColor;
}
.home-slider .content h3 span{
    font-weight: 700;
    color: currentColor;
}
.home-slider .content p{
    font-size: 27px;
}

#home-slider .cursor{
    color: var(--text-color);
    background-color: #fff;
    grid-area: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 10;
    border-radius: 50%;
    scale: .85;
    transition: opacity .2s ease-in-out,visibility .2s ease-in-out,scale .2s ease-in-out;
}

#home-slider .cursor .icon{
    transition: none;
    fill: currentColor;
}
#home-slider .cursor.left .icon{
    transform: rotate(180deg);
}
#home-slider .cursor .cursor-progress{
    display: none;
    position: absolute;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#home-slider .cursor .cursor-progress .circle{
    stroke-width: 10px;
    transform: rotate(-90deg) scale(.34);
    fill: transparent;
    stroke: var(--text-color);
    stroke-width: 30px;
    stroke-dasharray: 471;
    stroke-dashoffset: 471;
    transform: rotate(-90deg) scale(.06);
    transform-origin: center;
}

.btn-theme{
    font-size: 1rem;
    padding: 10px 30px;
    border: none;
    border-radius: 100px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(to right, #fa682b 0%, #f79626  100%);
}
.btn-theme:hover{
    outline: 2.5px solid rgba(14,145,189,.4);
    color: #fff;
}

.mt-10{
    margin-top: 10px;
}
.home-slider{
    padding: 0 !important;
    margin: 0 !important;
}

section{
    padding-top: 100px;
    padding-bottom: 100px;
}
.bg-gray{
    background-color: #f2f3f5;
}

h2.title{
    margin: 0 0 60px;
    font-size: 50px;
    font-weight: 700;
}
h3.title{
    margin: 0 0 60px;
    font-size: 40px;
    font-weight: 700;
}

section.categories a{
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
section.categories div.content{
    padding-top: 110%;
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    width: 100%;
    overflow: hidden;
    height: 100%;
}
section.categories div.mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .25;
    transition: all .5s;
    z-index: 1;
}
section.categories a:hover div.mask{
    opacity: 0;
}
section.categories div.content .btn{
    min-width: 50%;
    position: absolute;
    left: 25%;
    top: 40px;
    z-index: 2;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    letter-spacing: .5px;
}

.product-slider .slick-slide{
    padding: 0 10px;
}
.product-slider .product-item{
    padding-bottom: 15px;
    background: #fff;
    display: block;
    position: relative;
    border-radius: var(--radius);
    transition: transform .1s ease-out;
    overflow: hidden;
}
.product-slider .product-item .img2{
    display: none;
}
.product-slider .product-item:hover .img1{
    display: none;
}
.product-slider .product-item:hover .img2{
    display: block;
}
.product-slider .img-area{
    display: block;
    position: relative;
}
.product-slider .img-area img{
    transition: transform .15s ease-out,scale .15s ease-out,opacity .15s ease-out,visibility .15s ease-out;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.product-slider .product-item .content{
    padding: 0 30px;
    text-align: left;
}
.product-slider .product-item .content span{
    display: block;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(to right, #ff5100, #ff9801);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
}
.product-slider .product-item .content a{
    font-size: 20px;
    font-weight: 600;
}

.product-slider .product-item:hover .content a{
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(var(--default-color),.75);
}

.product-slider .slick-prev,
.product-slider .slick-next{
    top: 110%;
    width: 36px;
    height: 36px;
}
.product-slider .slick-prev:before,
.product-slider .slick-next:before{
    font-size: 36px;
    color: var(--text-color);
}
.product-slider .slick-next{
    right: 10px;
}
.product-slider .slick-prev{
    left: auto;
    right: 50px;
}

div.banner{
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    height: 440px;
}
div.banner .left{
    width: 60%;
    height: 100%;
    overflow: hidden;
}
div.banner img{
    object-fit: cover;
    transition: all .5s;
    width: 100%;
    height: 100%;
}
div.banner img:hover{
    transform: scale(1.1);
    transform-origin: center center;
}
div.banner .right{
    height: 100%;
    background: linear-gradient(to right, #ff5100 0%, #ff9801  100%);
    width: 40%;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}
div.banner h3{
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}
div.banner p{
    font-size: 22px;
    margin: 20px 0;
}
div.banner .button{
    color: #000;
    background-color: #fff;
    text-align: center;
    font-size: 22px;
    border-radius: 50px;
    display: inline-block;
    width: 265px;
    height: 55px;
    line-height: 55px;
    font-weight: 700;
}

section.video{
    position: relative;
    overflow: hidden;
}
section.video iframe{
    height: var(--video-height, 100%);
    pointer-events: none;
    z-index: 0;
    width: 100%;
    aspect-ratio: 16/9;
}
section.video .text{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.video .text .btn-video{
    margin-top: 200px;
    color: #fff;
    background-color: rgba(242,243,244,.15);
    border: 3px solid #fff;
    backdrop-filter: blur(12px);
    font-size: 1rem;
    font-weight: 400;
    padding: .5em 1.4em;
    border-radius: 50px;
    width: fit-content;
    transition: outline .15s ease-in-out;
}
section.video .text .btn-video:hover{
    outline: 2.5px solid rgba(255,255,255,.4)
}
section.video .text .btn-video span{
    margin-left: 5px;
    border: 2px solid #fff;
    padding: 0 8px;
    border-radius: 50%;
}
section.video .text .btn-video span svg{
    width: 7px;
    height: 8px;
    fill: #fff;
}

.v-box .img{
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.v-box .img img{
    object-fit: cover;
    transition: all .5s;
}
.v-box .img:hover img{
    transform: scale(1.1);
}
.v-box .img .overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #00000040;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.v-box .img .overlay img{
    width: 70px;
    height: 70px;
}
.v-box h4{
    font-size: 22px;
    text-align: center;
    margin: 0;
    margin-top: 10px;
}

footer{
    background: #f2f3f5;
    padding: 80px 0;
}
footer img{
    width: 150px;
    margin-bottom: 30px;
}
footer p{
    font-size: 16px;
    color: #7f7f7f;
    font-weight: 600;
}
footer h4{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
}
footer p.little{
    font-size: 14px;
}
footer ul{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}
footer ul li a{
    font-size: 16px;
    color: #7f7f7f;
    font-weight: 600;
    display: inline-block;
}
footer ul li a:after{
    content: "";
    display: block;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .15s ease-in-out;
}
footer ul li a:hover:after{
    transform: scaleX(1);
}

ul.social{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: var(--text-color);
    flex-direction: row;
}
ul.social a{
    color: var(--text-color);
}
footer .footer-bottom{
    padding-top: var(--vertical-spacer);
}
footer .footer-bottom p{
    font-weight: 500;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

.newsletter input{
    border: 1px solid #000;
    outline: none;
    color: #000;
    font-size: 18px;
    height: 50px;
    padding: 0 20px;
    border-radius: 10px !important;
    width: 100%;
    background: transparent;
    transition: background-color .1s ease-in,box-shadow .1s ease-in;
}
.newsletter button{
    position: absolute;
    right: 10px;
    font-size: 14px;
    padding: 5px 15px;
    background: #e4e4e4;
    display: flex;
    align-items: center;
    border-radius: 20px !important;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    gap: 5px;
}
.newsletter input:focus-within {
    outline: none;
    box-shadow: 0 1.5px rgb(var(--default-color));
    background-color: rgba(var(--default-color), 0.05);
}

section.video iframe{
    display: block;
}

.testimonials-slider .slick-slide{
    padding: 0 15px;
}

@media(max-width:768px){
    .home-slider .slick-slide{
        height: 80vh;
    }
    .home-slider img{
        height: 100%;
        object-fit: cover;
    }
    .home-slider .content h3{
        font-size: 22px;
    }
    .home-slider .content p{
        font-size: 12px;
    }
    .btn-theme{
        font-size: 15px;
        padding: 5px 30px;
    }
    .home-slider .content{
        text-align: center;
        margin-top: -150px;
    }
    .home-slider .content.text-center{
        margin-top: 0;
        text-align: left !important;
    }
    .home-slider .content{
        padding: 0 24px;
    }
    h3.title{
        margin: 0 0 30px;
        font-size: 25px;
    }
    section.categories a{
        margin-bottom: 20px;
    }
    section.categories div.content .btn{
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }
    h2.title{
        font-size: 23px;
        margin: 0 0 30px;
    }
    section{
        padding-top: 33px;
        padding-bottom: 33px;
    }
    .product-slider .slick-prev, .product-slider .slick-next{
        top: 98%;
    }
    .product-slider{
        padding-bottom: 40px;
    }
    div.banner{
        flex-wrap: wrap;
        height: auto;
    }
    div.banner .left{
        width: 100%;
    }
    div.banner .right{
        width: 100%;
        padding: 20px;
        text-align: center;
        align-items: center;
    }
    div.banner h3{
        font-size: 20px;
    }
    div.banner p{
        font-size: 16px;
    }
    div.banner .button{
        font-size: 15px;
        height: 35px;
        line-height: 35px;
        margin: 0 auto;
    }
    section.video .text{
        display: none;
    }
    section.awards img{
        margin-bottom: 15px;
        height: 120px;
        padding: 15px;
        object-fit: contain;
    }
    footer{
        padding: 40px 0;
    }
    footer p{
        font-size: 14px;
    }
    footer ul li a{
        font-size: 14px;
    }
    footer .newsletter{
        margin-bottom: 20px;
    }
    footer .footer-bottom{
        text-align: center;

    }
}

section.breadcrumb{
    padding: 0;
    position: relative;
    margin: 0;
    padding-bottom: 26.09375%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
section.breadcrumb img{
    width: 100%;
    object-fit: cover;
}
section.breadcrumb .mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000035;
    z-index: 1;
}
section.breadcrumb .text{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
}
section.breadcrumb .text h2{
    font-size: 55px;
    font-weight: 700;
}

section.page p{
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
}


div.widget{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
div.widget img{
    width: 150px;
}
div.widget h4{
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
div.widget p{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

section.breadcrumb .bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
section.breadcrumb .bg img{
    height: 100%;
}
@media(min-width:768px){
    .only-m{
        display: none !important;
    }
}


@media(max-width:768px){
    section.breadcrumb{
        padding-bottom: 133.33333333333334%;
    }
    .only-d{
        display: none !important;
    }
    section.breadcrumb .text h2{
        font-size: 25px;
    }
    section.page p{
        font-size: 15px;
        line-height: 25px;
    }
    div.widget{
        gap: 0;
        margin-bottom: 40px;
    }
    div.widget img{
        width: 90px;
        margin-bottom: 20px;
    }
    div.widget h4{
        font-size: 18px;
        margin-bottom: 5px;
    }
    div.widget p{
        font-size: 16px;
    }
}

section.about-banner{
    padding-bottom: 56.25%;
}
section.breadcrumb.about-banner .text{
    text-align: center;
}
section.breadcrumb.about-banner h2{
    color: transparent;
    background-clip: text;
    font-size: 135px;
    font-style: italic;
    background-image: linear-gradient(to right, #fb602c, #ffb759);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    padding-right: 10px;
    padding-left: 10px;
}


section.area img{
    border-radius: 20px;
    width: 100%;
}
section.area p,
section.area h3{
    padding: 0 80px;
}
section.area h3{
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 700;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(to right, #fb602c, #ffb759);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
section.area p{
    font-size: 20px;
    font-weight: 600;
}

section.slogan{
    padding-bottom: 46.14583333333333%;
}
section.breadcrumb.slogan h2{
    color: #fff;
    font-size: 50px;
}
section.breadcrumb.slogan p{
    font-size: 24px;
    color: #fff;
    width: 90%;
    max-width: 1300px;
    margin-top: 40px;
    text-align: center;
}

h2.title-color{
    color: transparent;
    background-clip: text;
    font-size: 50px;
    background-image: linear-gradient(to right, #fb602c, #ffb759);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: 700;
}
img.w8{
    width: 80%;
    max-width: 1000px;
    margin-top: 80px;
}

section.meaning{
    background-color: #F2F3F5;
    padding-top: 140px;
    padding-bottom: 100px;
    background-image: url(../img/bg.jpg);
    background-size: 100% 70%;
    background-repeat: no-repeat;
    position: relative;
}

section.meaning h3{
    margin-bottom: 100px;
    text-align: center;
    color: #fff;
}

div.meaning-slider{
    padding-left: 17%;
}
div.meaning-slider .slick-slide{
    padding: 0 15px;
}
div.meaning-slider .item{
    padding: 0 !important;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
div.meaning-slider img{
    width: 100%;
    height: auto;
}
div.meaning-slider .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 7%;
}
div.meaning-slider .mask img{
    height: 28px;
    width: auto;
    margin-bottom: 10px;
}
div.meaning-slider .mask p{
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.meaning-slider .slick-prev,
.meaning-slider .slick-next{
    top: 95%;
    width: 45px;
    height: 45px;
}
.meaning-slider .slick-prev:before,
.meaning-slider .slick-next:before{
    font-size: 45px;
    color: #dbdbdf;
}
.meaning-slider .slick-next{
    left: 70px;
}
.meaning-slider .slick-prev{
    left: 10px;
}

section.slogan2{
    padding-bottom: 54.11458333333333%;
}
section.breadcrumb.slogan2 h2{
    color: transparent;
    background-clip: text;
    font-size: 50px;
    background-image: linear-gradient(to right, #fb602c, #ffb759);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
section.breadcrumb.slogan2 p{
    font-size: 24px;
    color: #fff;
    width: 90%;
    max-width: 1300px;
    margin-top: 40px;
    text-align: center;
}
section.breadcrumb.slogan2 .text{
    justify-content: flex-start;
    padding-top: 10%;
}

@media(max-width:768px){
    section.breadcrumb.about-banner h2{
        font-size: 45px;
    }
    section.about-banner{
        padding-bottom: 133.33333333333334%;
    }
    section.area h3{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 26px;
        margin-bottom: 20px;
    }
    section.area p, section.area h3{
        padding: 0;
    }
    section.area p{
        font-size: 14px;
        text-align: center;
    }
    .column-reverse-m{
        flex-direction: column-reverse;
    }
    section.breadcrumb.slogan h2{
        font-size: 25px;
    }
    section.breadcrumb.slogan p{
        font-size: 14px;
    }
    section.slogan{
        padding-bottom: 123.33333333333331%;
    }
    h2.title-color{
        font-size: 25px;
    }
    img.w8{
        margin-top: 40px;
    }
    section.meaning{
        padding-top: 35px;
        padding-bottom: 25px;
    }
    section.meaning h3{
        margin: 0 0 30px;
        text-align: center;
        font-size: 25px;
        font-weight: 700;
    }
    .meaning-slider .slick-prev,
    .meaning-slider .slick-next{
        width: 25px;
        height: 25px;
    }
    .meaning-slider .slick-prev:before,
    .meaning-slider .slick-next:before{
        font-size: 25px;
    }
    .meaning-slider .slick-next{
        left: 35px;
    }
    .meaning-slider .slick-prev{
        left: 5px;
    }
    div.meaning-slider .mask img{
        height: 20px;
    }
    div.meaning-slider .mask p{
        font-size: 12px;
    }
    div.meaning-slider .mask{
        padding: 7% 3%;
    }
    section.slogan2{
        padding-bottom: 123.33333333333331%;
    }
    section.breadcrumb.slogan2 h2{
        font-size: 25px;
    }
    section.breadcrumb.slogan2 p{
        font-size: 14px;
        margin-top: 20px;
    }
}

.default-page h3{
    margin: 0 0 60px;
    font-size: 40px;
    font-weight: 700;
}

.default-page{
    font-size: 18px;
    padding-left: 55px;
    padding-right: 55px;
}
.default-page p{
    font-size: 18px;
    font-weight: 600;
}
.default-page div + h3,
.default-page p + h3{
    margin-top: 100px;
}
.guides{
    display: flex;
    flex-wrap: wrap;
}
.guides .guide{
    width: 50%;
    font-size: 18px;
    padding: 15px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.guides .guide a{
    text-decoration: underline;
    text-underline-offset: 6px;
}
.guides .guide img{
    width: 20px;
    margin-left: 10px;
}

section.breadcrumb.video{
    padding-bottom: 16.8%;
}
section.breadcrumb.video .text h2{
    font-size: 41px;
    color: #000;
    font-weight: 400;
}

section.videos{
    text-align: center;
    padding-left: 80px;
    padding-right: 80px;
}
section.videos iframe{
    max-width: 100%;
}
section.videos .col-md-4{
    margin-bottom: 30px;
}
section.videos h3{
    color: #ff7c00;
    font-size: 25px;
    margin-top: 0;
    text-align: center;
    font-weight: 500;
    margin-bottom: 30px;
}
section.videos div + h3{
    margin-top: 60px;
}

@media(max-width:768px){
    section.breadcrumb.video{
        padding-bottom: 38.8%;
    }
    section.videos{
        padding-left: 0;
        padding-right: 0;
    }
    .default-page.center-m h3{
        text-align: center;
    }
    .guides .guide a{
        text-underline-offset: 3px;
    }
    .guides .guide{
        width: 100% !important;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
        padding: 10px 0;
    }
    .default-page h3{
        font-size: 21px;
        margin-bottom: 20px;
    }
    .default-page{
        font-size: 14px;
        padding-left: 0;
        padding-right: 0;
    }
    .default-page p{
        font-size: 14px;
    }
    .default-page p + h3{
        margin-top: 33px;
    }
}

h2.faq-title{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}
.faq-item{
    border-bottom: 1.5px solid #7a7a7b;
}
.faq-item .title{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-weight: 600;
    font-size: 20px;
}
.faq-item .title button{
    border-color: rgba(33,33,33,.2);
    margin-left: 20px;
    border-width: 1px;
    display: flex;
    gap: 10px;
    position: relative;
    align-items: center;
    cursor: pointer;
    color: var(--default-color);
    padding: 0;
    min-width: 30px;
    min-height: 30px;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(12px);
    outline: 0;
    border-radius: 50px;
}
.faq-item .title button .coll{
    display: none;
}
.faq-item .title button.active .coll{
    display: block;
}
.faq-item .title button.active .expand{
    display: none;
}
.faq-item p{
    display: none;
    font-size: 17px;
    margin-bottom: 30px;
    font-weight: 500;
}

.faq-item + h2.faq-title{
    margin-top: 80px;
}

@media(max-width:768px){
    h2.faq-title{
        font-size: 23px;
        text-align: center;
        margin-bottom: 20px;
    }
    .faq-item .title{
        font-size: 14px;
        padding: 10px 0;
    }
    .faq-item p{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .faq-item + h2.faq-title{
        margin-top: 50px;
    }
}

.collection-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}
.collection-box .img{
    overflow: hidden;
    position: relative;
}
.collection-box .img img{
    transition: transform .15s ease-in-out;
    object-fit: cover;
    height: 450px;
}
.collection-box:hover .img img{
    transform: scale(1.02);
}
.collection-box h4{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 1em 1.4em;
}

@media(max-width:768px){
    .mb-10-m{
        margin-bottom: 10px;
    }
    .collection-box .img img{
        height: 390px;
    }
}

.products .item{
    background: transparent;
    display: block;
    position: relative;
    border-radius: var(--radius);
    transition: transform .1s ease-out;
    overflow: hidden;
    text-align: center;
    margin-bottom: 40px;
}
.products .item .img-area{
    display: block;
    position: relative;
}
.products .item img{
    border-radius: 4px;
    transition: transform .15s ease-out,scale .15s ease-out,opacity .15s ease-out,visibility .15s ease-out;
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.products .item .img2{
    display: none;
}
.products .item:hover .img1{
    display: none;
}
.products .item:hover .img2{
    display: block;
}

.products .item .text span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(to right, #ff5100, #ff9801);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
    margin: 0 auto;
}
.products .item .text a {
    font-size: 18px;
    font-weight: 600;
}
.products{
    background: #fff;
    padding: 40px;
}
.products .item:hover .text a{
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(var(--default-color),.75);
}

@media(max-width: 768px){
    .products{
        background: transparent;
        padding: 0;
    }
    .products .item{
        background: #fff;
        padding-bottom: 20px;
        margin-bottom: 15px;
    }
}

.product-slider-area{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.product-slider-area .product-image-for{
    width: 15%;
}
.product-slider-area .product-image-for img{
    display: block;
    width: 100%;
    border-radius: inherit;
}
.product-slider-area .product-image-for a{
    border-radius: var(--radius);
    width: 100%;
    position: relative;
    display: block;
    background-color: rgba(4, 20, 33, 0.5);
}
.product-slider-area .product-image-for .slick-current.slick-active a{
    border: 2px solid #EE9F49;
}
.product-slider-area{
    padding-right: 40px;
}
.product-slider-area .product-thumb-image{
    width: 80%;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: rgba(4, 20, 33, 0.5);
    box-shadow: var(--shadow);
}
.product-slider-area .product-thumb-image img{
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

section.product h3{
    font-size: 40px;
    font-weight: 700;
    padding-left: 40px;
}
section.product .desc{
    font-size: 16px;
    display: block;
    margin-top: 20px;
    padding-left: 40px;
}
section.product .desc ul{
    list-style: disc;
}
section.product ul.social{
    padding-left: 40px;

}
section.product{
    padding-top: 50px;
    padding-bottom: 70px;
}
section.product .desc ul li{
    margin-bottom: 5px;
}

section.technic{
    padding: 40px 0;
}
section.technic h2{
    text-align: center;
}
section.p-detail{
    padding: 40px 0;
    text-align: center;
}
section.p-detail h2{
    font-weight: 700;
    margin-bottom: 30px;
}
section.p-detail p{
    font-size: 16px;
    margin: 0;
}

.cc-table-item{
    display: flex;
    border-top: 1.5px solid black;
}
.cc-table-item p{
    margin: 0;
}
.cc-table-field{
    width: 20%;
    width: 20%;
    font-size: 14px;
    word-wrap: break-word;
    padding: 15px 0;
}
.cc-table-title p {
    font-weight: 700;
    font-size: 16px;
}
.cc-table-weight p {
    font-weight: 700;
}

.product-links{
    display: flex;
    justify-content: space-around;
}
.product-links a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .3s;
}
.product-links a:hover{
    transform: scale(1.1);
}
.product-links img{
    width: 60px;
    margin-bottom: 10px;
}
.product-links span{
    font-size: 16px;
    font-weight: 500;
}

@media(max-width:768px){
    .product-slider-area .product-thumb-image{
        width: 100%;
    }
    .product-slider-area .product-image-for{
        width: 100%;
    }
    .product-slider-area{
        padding-right: 0;
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }
    section.product{
        padding-top: 23px;
        padding-bottom: 33px;
    }
    .product-slider-area .product-image-for .slick-slide{
        padding: 0 5px;
    }
    section.product h3{
        padding-left: 0;
    }
    section.product .desc{
        padding-left: 0;
    }
    section.product .desc ul{
        padding-left: 15px;
    }
    section.product ul.social{
        padding-left: 0;
    }
    .cc-table-field{
        width: 33%;
    }
    .cc-table-item {
        flex-wrap: wrap;
    }
}

section.breadcrumb.try{
    padding-bottom: 42.864583333333336%;
}
section.breadcrumb.try .text .custom{
    flex-direction: row;
    width: 100%;
    max-width: 1420px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.breadcrumb.try .text h2{
    font-size: 45px;
    font-weight: 700;
}
section.breadcrumb.try .text p{
    font-size: 24px;
    font-weight: 500;
}
section.breadcrumb.try .text form{
    max-width: 90%;
    width: 415px;
}
section.breadcrumb.try .text form .form-group{
    margin-bottom: 10px;
}
section.breadcrumb.try .text form label{
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
section.breadcrumb.try .text form input{
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    height: 40px;
    padding: 10px;
    font-size: 18px;
}

.btn-theme-2{
    font-size: 20px;
    padding: 12px 50px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(to right, #fa682b 0%, #f79626  100%);
}
.btn-theme-2:hover{
    outline: none;
    color: #fff;
}

.custom-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    gap: 20px;
}
.custom-box img.icon{
    height: 70px;
    width: auto;
}
.custom-box h5{
    font-size: 24px;
    font-weight: 700;
}
.custom-box p{
    font-size: 18px;
    line-height: 23px;
    font-weight: 500;
}
.custom-box h5{
    margin: 0;
}

@media(max-width:768px){
    section.breadcrumb.try{
        padding-bottom: 133.33333333333334%;
    }
    section.breadcrumb.try .text .custom{
        flex-direction: column;
        justify-content: center;
    }
    section.breadcrumb.try .text h2{
        font-size: 24px;
        text-align: center;
    }
    section.breadcrumb.try .text p{
        font-size: 14px;
        text-align: center;
    }
    section.breadcrumb.try .text form{
        width: 70%;
        margin-top: 20px;
    }
    section.breadcrumb.try .text form .form-group{
        margin-bottom: 5px;
    }
    section.breadcrumb.try .text form label{
        font-size: 16px;
        margin-bottom: 2px;
    }
    section.breadcrumb.try .text form input{
        height: 35px;
        padding: 5px;
        font-size: 14px;
    }
    .btn-theme-2{
        font-size: 14px;
        padding: 8px 50px;
    }
    .custom-box{
        margin-bottom: 15px;
        padding: 15px 5px;
        gap: 5px;
    }
    .custom-box img.icon{
        height: 50px;
    }
    .custom-box h5{
        font-size: 16px;
    }
    .custom-box p{
        font-size: 12px;
        line-height: 17px;
    }
    section.breadcrumb.slogan p{
        margin-top: 20px;
    }
}

.post-box{
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}
.post-box .img{
    overflow: hidden;
    position: relative;
}
.post-box .img img{
    width: 100%;
    transition: all .5s;
}
.post-box:hover .img img{
    transform: scale(1.1);
}
.post-box .text{
    padding: 20px 35px;
}
.post-box .text h5{
    font-size: 22px;
    font-weight: 700;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 113px;
    margin: 10px 0;
    font-weight: 700;
}
.post-box .text span{
    display: block;
    font-size: 18px;
}

.post-title{
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
}
.post-title h5{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.post-title span{
    font-weight: 500;
    font-size: 1rem;
}

.post-detail{
    max-width: 800px;
    margin: 0 auto;
}
.post-detail,
.post-detail p{
    font-size: 20px;
}
.post-detail h1,
.post-detail h2,
.post-detail h3{
    font-weight: 700;
    margin-bottom: 32px;
}

@media(max-width:768px){
    .post-box .text h5{
        font-size: 18px;
        text-align: left;
        margin: 0;
        margin-bottom: 10px;
        height: auto;
    }
    .post-box .text span{
        color: #000;
        text-align: left;
        font-size: 14px;
    }
    .post-box .text{
        padding: 20px;
    }
}

@media(min-width:768px){
    .home-slider img.m{
        display: none;
    }
}
@media(max-width:768px){
    .home-slider img.d{
        display: none;
    }
}

.product-page-slider .slick-slide{
    border-radius: 20px;
    overflow: hidden;
}

.product-page-slider .slick-dots li button:before{
    font-size: 14px;
}

.product-page-slider .slick-prev:before, .product-page-slider  .slick-next:before {
    font-size: 30px;
    color: #404040;
}

.product-page-slider .slick-prev, .product-page-slider .slick-next{
    width: 30px;
    height: 30px;
    bottom: -80px;
    top: auto;
    z-index: 2;
}
.product-page-slider .slick-prev{
    left: 43%;
}
.product-page-slider .slick-next{
    right: 43%;
}

.video .dd-image{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    object-fit: cover;
    object-position: center;
}

.ftr{
    display: none;
}

.t-image{
    position: relative;
}
.t-linker{
    position: absolute;
    width: 100px;
    height: 50px;
    top: 43%;
    display: block;
    background: transparent;
    width: 80px;
    height: 225px;
}

.custom-video-4{
    margin-top: 70px;
    border-radius: 16px;
    overflow: hidden;
}
.custom-video-4 video{
    display: block;
}



.c-linker{
    position: absolute;
    bottom: 13px;
    display: block;
    width: 16%;
    height: 24%;
    background: transparent;
}
.c-image{
    position: relative;
    display: none;
}
.c-image.c-image-1{
    display: block;
}
.c-video{
    display: none;
}
.c-video.c-video-1{
    display: block;
}


@media(min-width:768px){
    .product-page-slider{
        padding: 0 60px;
    }
    .product-page-slider .slick-dots{
        margin-left: -60px;
        bottom: -60px;
    }
}

.technic .panel-group .panel {
    border-radius: 0;
    border: 0px !important;
    border-top: 1px solid #cdcdcd !important;
    box-shadow: none;
    padding: 15px 0;
}
.technic .panel-group>.panel:first-child .panel-heading {
    border-radius: 4px 4px 0 0;
}
.technic .collapse:not(.show){
    display: block;
}
.technic .panel-body {
    background: #fff;
    margin-left: 30%;
    display: flex;
    justify-content: center;
    margin-top: -34px;
    padding-bottom: 0 !important;
}
.technic .panel-body ul:nth-child(1) {
    width: 42%;
    font-weight: 600;
}
.technic .panel-body ul:nth-child(2) {
    width: 58%;
}
.technic .panel-body ul li {
    line-height: 37px;
    font-size: 16px;
    color: #333;
}
.technic h6{
    font-size: 14px;
    color: #888;
    font-weight: 500;
    line-height: 23px;
    padding-top: 20px;
}