
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif ;
    }
    header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(248,248,248,1);
        padding: 1rem;
    }
    
    .logo {
        display: flex;
        align-items: center;
        color: black;
        font-weight: bolder;
        text-decoration: none;
        font-size: 1.25rem;
    }
    
    .logo img {
        max-height: 6vh;
    }
    
    nav a {
        color: black;
        padding-left: 2rem;
        text-decoration: none;
        font-size: 1.25rem;
    }
    

    .menu-navbar-icon {
        display: none; 
        color: black;
        font-size: 24px;
        cursor: pointer;
    }
    .sidebar {
        position: fixed;
        top: 0;
        right: -300px; 
        height: 100%;
        width: 300px;
        background-color: white;
        color: black;
        padding: 20px;
        z-index: 999;
        transition: transform 0.3s ease; 
    }

.sidebar.active {
    right: 0; 
    animation: slideInFromRight 0.5s ease-in-out forwards; 
}

@keyframes slideInFromRight {
    0% {
        right: -300px; 
    }
    100% {
        right: 0; 
    }
}


    .no-scroll {
        overflow: hidden;
    }

    .sidebar a {
        display: block;
        color: black;
        text-decoration: none;
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 700;
    }
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: black;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
}

.close-btn:hover {
    color: red; 
}

    @media screen and (max-width: 937px) {
        .menu-navbar-icon {
            display: inline-block; 
        }

        nav {
            display: none; 
        }

        .sidebar {
            display: block;
        }
    }
    

    
    .welcome{width: 100%;
    min-height: 50vh;
    }
    .welcome .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 5rem;
    }
    .content-welcome h1{font-size: 3.5417rem;
    font-weight: 700;}
    .content-welcome p{font-weight: 1.1667rem;
    font-weight: 700;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;}
    .content-welcome a{background-color: #31837A;
    color: white;
    font-weight:bold;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 13rem 0.5rem 15rem;
    border-radius: 0.5rem;}
    .content-welcome a:hover{background-color: rgb(34, 91, 85);}
   .green-box {
    background-color: #42cfa569;
    width: 100%;
    min-height: 41vh;
    z-index: -1;
    position: absolute;
    opacity: 0.5;
    color: white; 
}

.freshness {
    width: 100%;
    min-height: 41vh;
    background-image: url(../img/photo-1600189020840-e9918c25269d.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
}
    .freshness-container{display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 9rem;}
    
    .freshness-box{background-color: rgba(55, 210, 225, 0.35);
    color: white;}
    .freshness-box h1{font-size: 2.9167rem;
    font-weight: 900;
    line-height: 1.2;}
    .freshness-box p{font-size: 1.1667rem;
    font-weight: 700;}

   .nourishing{width: 100%;
min-height: 50vh;}

.nourishing-container{display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 5rem;} 
    .nourishing-container h1{font-size: 2.9167rem;
    font-weight: 700;
padding-bottom: 1rem;}
.nourishing-img img{
    height: 40vh;
    object-fit: contain;
    margin-left: 5rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.beyond{width: 100%;
min-height: 83vh;
background-color: #42CFA5;
color: rgba(0, 0, 0, 0.87);}
.beyond-container{display: flex;
justify-content: center;
align-items: center;
flex-direction: row-reverse;
flex-wrap: wrap;
padding-top: 4rem;
padding-bottom: 4rem;}
.beyond-content h1{font-size: 2.5rem;
font-weight: 700;
padding-bottom: 3rem;
padding-top: 3rem;}
.FMCG{width: 100%;
min-height: 60vh;
background-color: rgba(248,248,248,1);;}
.FMCG-content a{text-decoration: none;}
.FMCG-content a:hover{text-decoration: underline;}
.FMCG-container{display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding-top: 3rem;}
.FMCG-content{text-align: center;}
.FMCG-content h1{font-size: 2.9167rem;
font-weight: 700;
padding-bottom: 2rem;}
.FMCG-content h4{font-size: 1.1667rem;
font-weight: 700;
padding-bottom: 3rem;}
.FMCG-content h6{font-size: 1rem;
font-weight: 700;
padding-top: 0.5rem;
padding-bottom: 1.4rem;}
    @media screen and (max-width: 1265px) {
        .home-img{height: 30vh !important;}
        .content-welcome a{margin-top: 1rem;
        padding: 0.5rem 9rem 0.5rem 9rem;}
        .content-welcome{margin-bottom: 3rem;
        padding-left: 7rem;}
        .beyond-container{flex-direction: column-reverse;
        }
        .beyond-content{padding-left: 1rem;}
    }
    
    .flip-left {
        animation: fade-flip 1s ease-in-out forwards;
    }
    
    @keyframes fade-flip {
        0% {
            opacity: 0;
            transform: rotateY(90deg);
        }
        50% {
            opacity: 1;
            transform: rotateY(90deg);
        }
        100% {
            opacity: 1;
            transform: rotateY(0deg);
        }
    }
    @keyframes fadeInFromBottom {
        0% {
            opacity: 0;
            transform: translateY(100%);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .content-welcome {
        animation: fadeInFromBottom 1s ease-in-out forwards;
    }
    @keyframes fadeInFromBottom {
        0% {
            opacity: 0;
            transform: translateY(100%);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .freshness-box {
        animation: fadeInFromBottom 1s ease-in-out forwards;
    }
    @keyframes fadeInFromBottom {
        0% {
            opacity: 0;
            transform: translateY(100%);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .content-nourishing {
        animation: fadeInFromBottom 1s ease-in-out forwards;
    }
    .nourishing-img img{height: 25vh;
    margin-right: 10rem;}
    .beyond-content {
        animation: fadeInFromBottom 1s ease-in-out forwards;
    }
    
    @keyframes fadeInFromBottom {
        0% {
            opacity: 0;
            transform: translateY(100%);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .FMCG-container {
        opacity: 0;
        transform: translateY(100%);
        animation: fadeInFromBottom 1s forwards;
    }
    
    @keyframes fadeInFromBottom {
        0% {
            opacity: 0;
            transform: translateY(100%);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
                