/* Table Of Contents 
 1.Home page
    1.1.Home Hero section
    1.2.Home: Experience section
    1.3.Home: Story
    1.4.Home: Products
    1.5.Home: Tropical
    1.6.Home: Category
    1.7. Review
*/

/* Home Hero section  */
.hero-ex-section{
    position: relative;
}

.hero-section{
    height:100%;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-ex-bg{
    background: url('../images/hero-ex-bg.webp') 50% 50% no-repeat;
    background-size: contain;
    background-position: right;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10%;
    z-index: -1;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    height: 100%;
    align-items: center;
    place-content: center;
}

.hero-left {
margin-left: 200px;
}

.hero-title h1{
color: #5d4233;
font-size: 70px;
font-family: 'TS-kaewPet-NP';
font-weight: 500;
margin:0;
}

.hero-text{
color: #5d4233;
font-size: 35px;
font-family: 'Roboto';
font-weight: 500;
margin: 20px 0;
}

.hero-right {
position: relative;
}

.hero-slider {
position: relative;
width: 100%;
height: 500px;
}

.hero-slider .slide {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.hero-slider .slide img {
width: 100%;
height: 100%;
object-fit: contain;
}

.hero-inner-mobile{
    display:none;
}

@media screen and (max-width: 1500px) {
.hero-section{
    height: 100%;
}

.hero-left {
margin-left: 100px;
}
}



@media screen and (max-width: 1150px) {
    .hero-title h1 {
        font-size: 50px;
    }

    .hero-text {
    font-size: 25px;
    }

    .hero-left {
margin-left: 30px;
}
}

@media screen and (max-width: 900px) {
    .hero-title h1 {
        font-size: 40px;
    }

    .hero-text {
    font-size: 20px;
    }
}


@media screen and (max-width: 767px) {
.hero-bg{
    background: url('../images/mobile-hero-bg.webp') 50% 50% no-repeat;
    background-size: 100% 75%;
    background-position: bottom;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.hero-ex-bg{
    display: none;
}

.hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0px 30px;
    top: 5%;
}

.hero-left {
    margin-left: 0px;
    text-align: center;
}

.hero-slider {
height: 200px;
}
}



/* Home: Experience section  */
.experience-section{
    height: 100%;
    position: relative;
    padding: 50px 0;
   overflow: hidden;
}

.experience-inner {
position: relative;
height: 100%;
width: 100%;
display: grid;
align-items: center;
}

.ex-sec-title {
text-align: right;
right: 3%;
position: relative;
font-size: 70px;
font-family: 'TS-kaewPet-NP';
font-weight: 500;
color:#fff;
    margin-top: 50px;
}

.experience-full-inner {
        position: relative;
        width: 70%;
        margin: 0px auto;
        margin-top: 30px;
}

.experience-full {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.experience-col {
    position: relative;
    border-radius: 10px;
border:3px solid #000;
}

.experience-col-img {
    width: 100%;
    background: url() 50% 50% no-repeat;
    background-size: cover;
    background-clip: content-box;
    position: relative;
    height: 200px;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}

.experience-col a{
    text-decoration:none;
}

.experience-info {
    position: relative;
    z-index: 0;
    background: #fff;
    padding: 30px 20px;
    height: 100%;
    display: grid;
    place-content: center;
    color: #000;
    font-size: 50px;
    font-family: 'TS-kaewPet-NP';
    font-weight: 500;
    border-radius: 0 0 10px 10px;
}

.experience-col:hover .experience-info{
    background: #fbb912;
    color:#fff;
    transition: background 1s ease-in-out;
}

.experience-bg{
    display:none;
}

@media (max-height: 1400px) {
.experience-section {
    height: 100%;
    position: relative;
}
}

@media (max-width: 1000px) {
    .experience-full-inner {
    width: 90%;
}

.experience-info {
    padding: 20px;
    font-size:30px;
}

.ex-sec-title{
    font-size: 50px;
}
}


@media (max-width: 767px) {
    .experience-section {
    height: 100%;
    padding: 0;
}

    .experience-bg{
        background: url('../images/ex-bg.webp') 50% 50% no-repeat;
        background-size: 100% 75%;
        background-position: top;
        position: absolute;
        width: 100%;
        height: 100%;
        top: -1px;
        display: block;
    }

    .experience-full {
        grid-template-columns: 1fr;
    }

    .ex-sec-title {
        text-align: center;
        right: 0%;
        font-size: 60px;
        padding: 70px 30px;
        margin: 0;
    }

.experience-col {
    position: relative;
    border-radius: 10px;
    border: 3px solid #000;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    overflow: hidden;
}

.experience-col-img {
    border-radius: 10px 0px 0 10px;
}

.experience-info {
        padding: 20px;
        font-size: 60px;
    }
}

@media (max-width: 580px) {
    .ex-sec-title {
        font-size: 45px;
        padding: 30px;
    }

    .experience-info {
        font-size: 40px;
        text-align: center;
    }

    .experience-col-img {
    height: 150px;
}
}



/* Home: Story */
.story-product-section{
    position: relative;
    z-index: 1;
    padding-top: 100px;
    overflow: hidden;
}

.home-bg{
    background: url('../images/ns-home.webp') 50% 50% no-repeat;
    background-size: contain;
    background-position: left;
    position: absolute;
    width: 800px;
    height: 100%;
    top: 5%;
}

.story-section{
    height: 100%;
    position: relative;
    z-index: 1;
}

.story-bg{
    display:none;
}

.story-inner {
position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    height: 100%;
    align-items: center;
    place-content: center;
    padding: 0 200px;
}



.story-title {
color: #5d4233;
font-size: 70px;
font-family: 'TS-kaewPet-NP';
font-weight: 500;
margin:0;
}

.story-text{
color: #5d4233;
font-size: 20px;
font-weight: 500;
margin: 40px 0;
}

.story-right {
position: relative;
    width: 100%;
    text-align: right;
}

.story-img {
position: relative;
}

.story-img img {
width: 600px;
    height: 100%;
    border: 5px solid #5d4233;
}

.story-text-inner{
display:none;
}

@media (max-width: 1500px) {
    .home-bg{
    width: 750px;
    top: 10%;
}

.story-product-section {
    padding-top: 50px;
}

.story-inner {
    padding: 0 100px;
}

.story-img img {
width: 100%;
}
}

@media (max-width: 1300px) {
    .story-title{
font-size: 60px;
}

.story-inner {
    padding: 0 50px;
}

}

@media (max-width: 1150px) {
.story-title {
font-size: 50px;
}

.story-text{
font-size: 18px;
margin: 20px 0;
}

.home-bg{
    width: 700px;
    top: 4%;
}
}

@media (max-width: 900px) {
    .story-title{
font-size: 40px;
}

.story-text{
font-size: 16px;
margin: 30px 0;
}

}

@media (max-width: 767px) {
.story-product-section {
    padding-top: 0px;
}

    .story-section {
height: 100%;
position: relative;
}

.story-bg{
    display:block;
    background: url('../images/story-m.webp') 50% 50% no-repeat;
    background-size: 100% 75%;
    background-position: bottom left;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;

    }

    .story-inner{
        grid-template-columns: 1fr;
        padding:0;
    }

    .story-right {
        display: none;
    }

    .story-left {
    margin: 20px;
    padding-bottom: 50px;
    text-align: center;
}

.story-text-inner{
    background: url('../images/story-text-bg.webp') 50% 50% no-repeat;
    display: block;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 60%;
    bottom: 0;
    z-index: -1;
}

.home-bg{
        display:none;
    }
}

@media (max-width: 600px) {
    .story-text-inner{
    height: 68%;
    }
}

@media (max-width: 420px) {
    .story-text-inner{
    height: 70%;
    }
}


/* Home: Products */
.products-section{
    height: 100%;
    position: relative;
   padding: 100px 200px;
   overflow: hidden;
}

.products-bg{
display:none;
}

.products-full-inner {
position: relative;
}

.products-full {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px;
}

.products-col {
position: relative;
border-radius: 12px;
border: 3px solid #5d4233;
background: #fff;
text-align: center;
}

.products-info{
padding:20px;
padding-bottom: 50px;
}

.products-col-img {
width: 100%;
margin:0 auto;

}

.products-col-img img{
width: 200px;
height:100%;
}

.products-title{
font-size: 50px;
font-family: 'TS-kaewPet-NP';
font-weight: 500;
color: #5d4233;
}

.products-text {
color: #5d4233;
font-size: 16px;
font-weight: 500;
margin: 10px 0;
}

.products-btn{
width: 100%;
position: absolute;
bottom: 0;
}

.products-btn a{
text-decoration:none;
}

.product {
width: 100%;
border-radius: 10px;
}

@media (max-width: 1500px) {
.products-section{
   padding: 50px 100px;
}
}

@media (max-width: 1300px) {
    .products-section {
        padding: 50px;
    }
}

@media (max-width: 1150px) {


.products-col-img img{
width: 150px;
}
}

@media (max-width: 767px) {
.products-section {
    height: 100%;
    padding: 0px;
}

.products-full-inner {
    position: relative;
    padding: 50px 30px;
}


.products-bg{
    display:block;
    background: url('../images/products-m.webp') 50% 50% no-repeat;
    background-size: 100% 75%;
    background-position: top;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -1%;
}

.products-full {
grid-template-columns:1fr;
gap: 30px;
}

.products-info {
    padding: 20px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
}

.products-desc-m{
    display:none;

}

.products-col-img img {
width: 150px;
height: 150px;
}

.products-btn {
width: 65%;
position: absolute;
bottom: 0;
right: 0;
}
}

@media (max-width: 550px) {
.products-col-img img {
width: 100px;
height: 100px;
}

.products-title {
font-size: 40px;
}

.products-text {
font-size: 14px;
}
}


/* Home: Tropical */
.tropical-section{
    height: 100%;
    position: relative;
    padding: 0px 200px;
    overflow: hidden;
    }

.tropical-bg{
        display:none;
}

.tropical-inner {
position: relative;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
height: 100%;
align-items: center;
place-content: center;
z-index: 1;
}

.tropical-left {
    text-align: right;
}

.tropical-title {
color: #5d4233;
font-size: 60px;
font-family: 'TS-kaewPet-NP';
font-weight: 500;
margin:0;
}

.tropical-text{
color: #5d4233;
font-size: 20px;
font-weight: 500;
margin: 40px 0;
}

.tropical-right {
position: relative;
    width: 100%;
    text-align: left;
}

.tropical-img {
position: relative;

}

.tropical-img img {
width: 600px;
    height: 100%;
    border: 5px solid #5d4233;
}

@media (max-width: 1500px) {
.tropical-section{
    padding: 0px 100px;
    }

    .tropical-img img  {
width: 100%;
    }
}

@media (max-width: 1300px) {
    .tropical-title{
font-size: 50px;
}

.tropical-section{
    padding: 30px 50px;
    }

}

@media (max-width: 1150px) {

.tropical-text{
font-size: 18px;
margin: 20px 0;
}

 .tropical-section {
height: 100%;
}
}

@media (max-width: 900px) {
    .tropical-title{
font-size: 40px;
}

.tropical-text{
font-size: 16px;
margin: 30px 0;
}

}

@media (max-width: 767px) {
.tropical-section {
        padding: 0;
    }

.tropical-bg{
    display:block;
    background: url('../images/tropical-m.webp') 50% 50% no-repeat;
    background-size: 100% 75%;
    background-position: bottom;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: -1;
}

    .tropical-inner{
        grid-template-columns: 1fr;
        padding:  30px;
    
    }

    .tropical-left {
    margin: 0px;
    padding-bottom: 50px;
    text-align: center;
}

.tropical{
    background: #fbb912;
    color: #fff;
    border: 3px solid #5d4233;
}
}

@media (max-width: 550px) {
    .tropical-right {
padding: 0px;
}

}


/* Home: Category */
.category-section{
    background: url('../images/category-bg.webp') 50% 50% no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 200px;
    overflow: hidden;
}

.category-container{
display: grid;
    grid-template-columns: 1fr 1fr  1fr 1fr 1fr;
    gap: 30px;
}

.category-box {
    width: 100%;
    height: 200px;
    background-color: #fff;
    color: #fff;
    text-align: center;
    display: grid;
    align-items: center;
    place-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0px;
    border: 1px solid #5d4233;
    border-radius: 10px;
    transition: background 1s ease-in-out;
}

.category-img{
background: url('../images/category-icon.webp') 50% 50% no-repeat;
background-size: cover;
background-position: center;
position: absolute;
height: 100%;
width: 100%;
z-index: 1;
opacity: 1;
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.category-title {
position: relative;
z-index: 9;
color: #5d4233;
font-size: 20px;
padding: 0 10px;
opacity: 1;
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.category-desc {
opacity: 0;
transform: translateY(20px);
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
position: absolute;
text-align: center;
padding: 10px;
font-size: 14px;
}

.category-box:hover {
background-color: #5d4233;
}

.category-box:hover .category-title {
opacity: 0;
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.category-box:hover .category-img {
opacity: 0;
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.category-box:hover .category-desc {
opacity: 1;
transform: translateY(0);
}

@media (max-width: 1600px) {
.category-section{
    padding: 100px;
}

}

@media (max-width: 1350px) {
.category-section{
    padding: 50px;
}

.category-box {
    height: 200px;
}

}

@media (max-width: 1150px) {
    .category-box {
    height: 250px;
}

.category-desc{
    font-size: 14px;
}

.category-section{
    padding: 30px;
}

}

@media (max-width: 960px) {
    .category-container{
    grid-template-columns: 1fr 1fr;
}

.category-box{
margin:0;
}
}


@media (max-width: 550px) {
    .category-container{
    grid-template-columns: 1fr;
}
}

/* Review  */
.testimonials-area {
    background: url('../images/category-bg.webp') 50% 50% no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
        height: 100%;
        padding: 50px 100px;
        padding-top: 0;
        margin-top: -5px;
    }
    
    .review-bg{
        position: absolute;
        background: url('images/review-quote.webp') 50% 50% no-repeat;
        background-size: contain;
        background-position: right;
        width: 25%;
        height: 70%;
        right: 50px;
        top: 40px;
    }

    .testimonial-section {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: center;
        color: #5d4233;
        padding: 50px;
        overflow: hidden;
        height: 100%;
        background: #fff;
        border-radius: 20px;
    }

    .testimonial-title {
        font-size: 60px;
        font-family: 'TS-kaewPet-NP';
        font-weight: 500;
    }

    .testimonial-container {
        height: 100%;
        overflow: hidden;
    }

    .testimonial {
        font-style: italic;
        text-align: right;
        padding: 10px;
    }

    .testimonial-content{
        font-size:25px;
    }

    .testimonial-author {
        font-weight: bold;
        margin-top: 10px;
        display: block;
    }

    @media (max-width: 1150px) {
        .testimonial-section{
        padding:50px;
    }

    .testimonials-area {
            padding: 50px 30px;
        }
}

@media (max-width: 990px) {
    .testimonial-section{
        padding: 30px;
    }

}

@media (max-width: 767px) {
    .testimonial-title {
        font-size: 50px;
        text-align: center;
    }

    .testimonial-section {
    display: grid;
    grid-template-columns: 1fr;
}
}

@media (max-width: 550px) {
    .testimonial-title {
        font-size: 40px;
        line-height: 30px;
    }

    .testimonial-content {
        font-size: 18px;
    }

    .testimonial-section {
        padding: 20px;
    }

}