@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f7f7f7;
}

.container {
    width: min(2100px, 92%);
    margin: auto
}

header {
    top: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}
header a {
    font-family: "Poppins", sans-serif;
}

.rainbow-text{
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;

    background: linear-gradient(
        90deg,
        #ff0000,
        #ff7f00,
        #ffff00,
        #00c853,
        #00b0ff,
        #3f51b5,
        #9c27b0
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    background-size: 300%;
    animation: rainbow 4s linear infinite;
}

@keyframes rainbow{
    0%{
        background-position: 0%;
    }
    100%{
        background-position: 300%;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0
}

nav a {
    text-decoration: none;
    color: #333;
    margin-left: 22px
}

.hero {
    background: #FF8D21;
    color: #fff;
    padding: 90px 0
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 18px;
    font-family: Poppins;
}
.hero p {
    font-size: 14px;
    margin-bottom: 18px;
    font-family: Poppins,Sans-serif;
}

.btn {
    display: inline-block;
    background: #76CD26;
    color: Black;
    padding: 14px 28px;
    border-radius: 40px;
    border: 1px solid black;
    text-decoration: none;
    margin-top: 20px;
}

.hero-card {
    display: flex;
    justify-content: center
}

.circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(#ffe082, #ff9800)
}

.section {
    padding: 70px 0
}

.alt {
    background: #fff
}

h2 {
    text-align: center;
    color: #228b22;
    margin-bottom: 30px
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.card,
.product {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.thumb {
    height: 170px;
    background: #c8e6c9;
    border-radius: 10px;
    margin-bottom: 12px
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px
}

.gallery div {
    height: 180px;
    background: #dcedc8;
    border-radius: 12px
}

.contact {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: auto
}

input,
textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px
}

textarea {
    height: 120px
}

button {
    padding: 12px;
    border: none;
    background: #228b22;
    color: #fff;
    border-radius: 8px
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-wrap {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 38px;
    }

    nav {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #2E8B57;
}

.logo img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}
.why-us{
    padding:90px 0;
    background:#fff;
}

.why-us .title{
    text-align:center;
    font-family:"Poppins",sans-serif;
    font-size:52px;
    font-weight:700;
    color:#FF7B00;
    margin-bottom:70px;
}

.why-grid{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
}

.why-card{
    flex:1;
    text-align:center;
}

.why-card img{
    width:150px;
    height:150px;
    object-fit:contain;
    margin-bottom:30px;
    transition:.3s;
}

.why-card img:hover{
    transform:scale(1.08);
}

.why-card p{
    font-family:"Poppins",sans-serif;
    font-size:15px;
    color:#444;
    line-height:1.8;
    max-width:340px;
    margin:auto;
}

.ingredients{
    position: relative;
    width: 100%;
    height: 340px;

    background: url("apelijo.jpg") center center/cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}
.ingredients-2{
    position: relative;
    width: 100%;
    height: 340px;

    background: url("orangetree.jpg") center center/cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.30);
}

.ingredients-content{
    position: relative;
    z-index: 2;
    text-align: center;
}

.ingredients-content h2{
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.ingredients-content h1{
    font-family: "Poppins", sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

/* ===========================
   BEST SELLER
=========================== */

.best-seller{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-family:"Poppins",sans-serif;
    font-size:52px;
    font-weight:700;
    color:#FF7B00;
    margin-bottom:15px;
}

.section-title p{
    max-width:800px;
    margin:auto;
    font-family:"Poppins",sans-serif;
    font-size:14px;
    line-height:1.8;
    color:#555;
}


/* ===========================
   SLIDER
=========================== */

.slider-container{
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.slider{

    display:flex;
    gap:25px;

    transition:.6s ease;

}

.slide{

    min-width:calc(33.333% - 17px);

}

.product-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    width:100%;
    height:750px;

    object-fit:cover;

    display:block;

}

.product-info{

    padding:20px;

    text-align:center;

}

.product-info h3{

    font-family:"Poppins",sans-serif;

    font-size:28px;

    color:#18b9b4;

    margin-bottom:10px;

}

.product-info p{

    font-family:"Poppins",sans-serif;

    color:#666;

    line-height:1.7;

}

/* ===========================
   BUTTON
=========================== */

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border-radius:50%;

    border:none;

    background:rgba(255,255,255,.9);

    font-size:28px;

    cursor:pointer;

    box-shadow:0 4px 15px rgba(0,0,0,.15);

    transition:.3s;

    z-index:10;

}

.prev{

    left:-5px;

}

.next{

    right:-5px;

}

.prev:hover,
.next:hover{

    background:#18b9b4;

    color:#fff;

}






.Galerry-Toko{
    padding:100px 0;
    background:#FF8D21;
}

.section-title-toko{
    text-align:center;
    margin-bottom:50px;
}

.section-title-toko h2{
    font-family:"Poppins",sans-serif;
    font-size:52px;
    font-weight:700;
    color:white;
    margin-bottom:15px;
}

.section-title-toko p{
    max-width:800px;
    margin:auto;
    font-family:"Poppins",sans-serif;
    font-size:14px;
    line-height:1.8;
    color:white;
}
.slider-container-toko{
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-toko{

    display:flex;
    gap:25px;

    transition:.6s ease;

}

.slide-toko{
    min-width: calc(50% - 12.5px);
}

.product-card-toko{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.product-card-toko:hover{

    transform:translateY(-10px);

}

.product-card-toko img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.product-info{

    padding:20px;

    text-align:center;

}

.product-info h3{

    font-family:"Poppins",sans-serif;

    font-size:28px;

    color:#18b9b4;

    margin-bottom:10px;

}

.product-info p{

    font-family:"Poppins",sans-serif;

    color:#666;

    line-height:1.7;

}

/* ===========================
   BUTTON
=========================== */

.prev-toko,
.next-toko{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border-radius:50%;

    border:none;

    background:rgba(255,255,255,.9);

    font-size:28px;

    cursor:pointer;

    box-shadow:0 4px 15px rgba(0,0,0,.15);

    transition:.3s;

    z-index:10;

}

.prev-toko{

    left:-5px;

}

.next-toko{

    right:-5px;

}

.prev-toko:hover,
.next-toko:hover{

    background:#18b9b4;

    color:#fff;

}
.container-toko{
    margin:0 auto;
}

.product-card-depan img{
    width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

/* ==========================
   VIDEO
========================== */

.video-section{
    margin-top:70px;
    text-align:center;
}

.video-section h3{
    font-family:"Poppins",sans-serif;
    font-size:32px;
    color:#fff;
    margin-bottom:25px;
}

.video-section video{
    width:80%;
    max-width:900px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}


/* ==========================
   AUDIO
========================== */

.audio-section{
    margin-top:50px;
    margin-bottom:40px;
    text-align:center;
}

.audio-section h3{
    font-family:"Poppins",sans-serif;
    font-size:28px;
    color:#fff;
    margin-bottom:20px;
}

.audio-section audio{
    width:450px;
    max-width:90%;
}

/*==========================
    SOCIAL MEDIA
==========================*/

.social-media{

    background:#fff;

    padding:80px 20px;

    text-align:center;

}

.social-logo{

    width:220px;

    margin-bottom:25px;

}

.social-media h2{

    font-family:"Poppins",sans-serif;

    font-size:45px;

    color:#FF8D21;

    margin-bottom:45px;

    font-weight:700;

}

.social-list{
    display:flex;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;
    margin-top:35px;
}

.social-list a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#555;
    font-size:20px;
    font-family:"Poppins",sans-serif;
    transition:.3s;
}

.social-list a i{
    color:#ff8d21;
    font-size:28px;
}

.social-list a:hover{
    color:#ff8d21;
}







/* ===========================
   VISI MISI
=========================== */

.visi-misi{
    padding:100px 0;
    background:#fff;
}

.container-visi{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.visi-text{
    flex:1;
}

.visi-text h2{
    font-family:"Poppins",sans-serif;
    font-size:40px;
    color:#FF8D21;
    margin-bottom:20px;
}

.visi-text p{
    font-family:"Poppins",sans-serif;
    font-size:14px;
    line-height:2;
    color:#444;
    margin-bottom:50px;
}

.visi-text ol{
    padding-left:30px;
}

.visi-text li{
    font-family:"Poppins",sans-serif;
    font-size:14px;
    color:#444;
    line-height:2;
    margin-bottom:10px;
}

.visi-image{
    flex:1;
    text-align:center;
}

.visi-image img{
    width:100%;
    max-width:600px;
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ===========================
   KENAPA RAINBOW JUICE
=========================== */

.why-rainbow{

    padding:100px 0;
    background:#grey;

}

.container-why{

    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

/* ===========================
   TEXT
=========================== */

.why-text{

    flex:1;

}

.why-text h2{

    font-family:"Poppins",sans-serif;
    font-size:40px;
    color:#FF8D21;
    margin-bottom:35px;

}

.why-text ul{

    padding-left:25px;

}

.why-text li{

    font-family:"Poppins",sans-serif;
    font-size:14px;
    color:#444;
    line-height:1.8;
    margin-bottom:15px;

}

/* ===========================
   GALERI
=========================== */

.why-gallery{

    flex:1;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.why-gallery img{

    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:25px;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.why-gallery img:hover{

    transform:scale(1.05);

}

/* ==========================
   CONTACT
========================== */

.contact{
    width: 100vw;
    background: #F5F5F5;
    padding: 100px 0;
    border: 2px solid black;
}

.container-contact{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-box{
    width:100%;
}

.contact h2{

    text-align:center;

    color:#ff8d21;

    font-size:42px;

    margin-bottom:50px;

    font-family:"Poppins",sans-serif;

    letter-spacing:3px;

}

.contact label{

    display:block;

    color:#ff8d21;

    font-size:13px;

    margin-bottom:10px;

    margin-top:25px;

    letter-spacing:2px;

    font-family:"Poppins",sans-serif;

}

.contact input,
.contact textarea{

    width:100%;

    background:white;

    border:1px solid #ff8d21;

    color:#ff8d21;

    padding:18px;

    font-size:16px;

    font-family:"Poppins",sans-serif;

    outline:none;

    transition:.3s;

}

.contact input:focus,
.contact textarea:focus{

    border:1px solid #ff8d21;

}

.contact textarea{

    resize:none;

}

.contact button{

    width:100%;

    margin-top:35px;

    padding:18px;

    background:white;

    color:black;

    border:none;

    cursor:pointer;

    font-size:15px;

    font-weight:bold;

    letter-spacing:3px;

    transition:.3s;
    border:1px solid #ff8d21;

}

.contact button:hover{

    background:#ff8d21;

    color:black;

}


.location{
    padding:100px 0;
    background:grey;
}

.location-title{
    text-align:center;
    color:#FF8D21;
    font-size:50px;
    margin-bottom:60px;
}

.location-card{
    max-width:650px;
    margin:auto;
    text-align:center;
}

.location-card img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.location-card h3{
    margin-top:25px;
    font-size:34px;
    color:#FF8D21;
}

.location-card p{
    margin-top:10px;
    font-size:14px;
    color:white;
}

.maps-box{
    margin:50px auto 30px;
    width:100%;
    max-width:900px;
}

.maps-box iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.maps-button{
    text-align:center;
}

.maps-button a{
    display:inline-block;
    padding:16px 35px;
    background:#ff8d21;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.maps-button a:hover{
    background:#10b6b2;
}

/* ==========================
   HISTORY
========================== */

.history{
    padding:100px 0;
    background:#grey;
}

.container-history{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.history-image{
    flex:1;
}

.history-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.history-text{
    flex:1;
}

.history-text h2{
    font-size:42px;
    color:#FF8D21;
    margin-bottom:20px;
    text-align:left;
}

.history-text > p{
    font-size:15px;
    color:#555;
    line-height:2;
    margin-bottom:40px;
}

.history-item{
    margin-bottom:25px;
}

.history-item h3{
    color:#FF8D21;
    font-size:22px;
    margin-bottom:8px;
}

.history-item p{
    color:#555;
    line-height:1.8;
    font-size:15px;
}




















/* ===========================
   RESPONSIVE
=========================== */

/* ===================================
   TABLET 1024 x 768
=================================== */

@media screen and (max-width:1024px){

    .container{
        width:95%;
    }

    /* Navbar */
    .nav{
        padding:15px 0;
    }

    nav a{
        margin-left:15px;
        font-size:15px;
    }

    .logo img{
        width:75px;
        height:auto;
    }

    .rainbow-text{
        font-size:22px;
    }

    /* Hero */
    .hero{
        padding:70px 0;
    }

    .hero-wrap{
        gap:30px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.3;
    }

    .product-card-depan img{
        width:260px;
    }

    /* Why Us */
    .why-us .title{
        font-size:40px;
    }

    .why-grid{
        gap:30px;
    }

    .why-card img{
        width:120px;
        height:120px;
    }

    .why-card p{
        font-size:14px;
    }

    /* Banner */
    .ingredients,
    .ingredients-2{
        height:260px;
    }

    .ingredients-content h2{
        font-size:34px;
    }

    .ingredients-content h1{
        font-size:48px;
    }

    /* Best Seller */
    .section-title h2{
        font-size:40px;
    }

    .slide{
        min-width:calc(50% - 12px);
    }

    .product-card img{
        height:500px;
    }

    /* Gallery */
    .slide-toko{
        min-width:calc(50% - 12px);
    }

    .product-card-toko img{
        height:300px;
    }

    /* Video */
    .video-section video{
        width:90%;
    }

    /* Visi Misi */
    .container-visi{
        gap:40px;
    }

    .visi-text h2{
        font-size:34px;
    }

    .visi-image img{
        max-width:450px;
    }

    /* Kenapa Rainbow */
    .container-why{
        gap:40px;
    }

    .why-text h2{
        font-size:34px;
    }

    .why-gallery img{
        height:220px;
    }

    /* Contact */
    .container-contact{
        width:90%;
        max-width:700px;
    }

    /* Maps */
    .location-card{
        max-width:500px;
    }

    .maps-box{
        width:90%;
    }

    .maps-box iframe{
        height:350px;
    }

    /* Footer */
    .social-logo{
        width:180px;
    }

    .social-media h2{
        font-size:34px;
    }

    .social-list{
        gap:35px;
    }

    .social-list a{
        font-size:18px;
    }
        .container-history{
            width: 92%;
            gap: 40px;
        }

        .history-image{
            flex: 1;
        }

        .history-image img{
            width: 100%;
            max-width: 430px;
            display: block;
            margin: auto;
            border-radius: 25px;
        }

        .history-text{
            flex: 1;
        }

        .history-text h2{
            font-size: 36px;
            margin-bottom: 18px;
        }

        .history-text > p{
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .history-item{
            margin-bottom: 18px;
        }

        .history-item h3{
            font-size: 20px;
            margin-bottom: 6px;
        }

        .history-item p{
            font-size: 14px;
            line-height: 1.7;
        }


}

@media(max-width:991px){

.slide{

    min-width:50%;

}

.menu-tab{

    gap:50px;

}

.menu-tab .tab{

    font-size:24px;

}

.section-title h2{

    font-size:40px;

}
@media(max-width:991px){

    .container-history{
        flex-direction:column;
    }

    .history-text{
        text-align:center;
    }

    .history-text h2{
        text-align:center;
    }

    .history-item{
        text-align:left;
    }

}

}

@media(max-width:768px){

.slide{

    min-width:100%;

}

.menu-tab{

    flex-direction:column;

    gap:20px;

}

.product-card img{

    height:380px;

}

.section-title h2{

    font-size:32px;

}

.section-title p{

    font-size:15px;

}

}
















@media(max-width:768px){

.why-grid{
    flex-direction:column;
    gap:60px;
}

.why-us .title{
    font-size:34px;
}

.why-card img{
    width:120px;
}

.why-card p{
    font-size:18px;
}

    .ingredients{
        height:250px;
    }

    .ingredients-content h2{
        font-size:28px;
    }

    .ingredients-content h1{
        font-size:42px;
    }

        .container-visi{
            flex-direction:column;
            text-align:center;
        }

        .visi-text h2{
            font-size:42px;
        }

        .visi-text p,
        .visi-text li{
            font-size:16px;
        }

        .visi-text ol{
            text-align:left;
        }

        .visi-image img{
            max-width:100%;
        }
            .container-why{

                flex-direction:column;

            }

            .why-text{

                text-align:center;

            }

            .why-text h2{

                font-size:38px;

            }

            .why-text li{

                font-size:17px;

                text-align:left;

            }

            .why-gallery{

                width:100%;

            }

            .why-gallery img{

                height:180px;

            }


    }

    /* ===================================
       MOBILE (iPhone 13 & Samsung S23)
    =================================== */

    @media screen and (max-width:430px){

        .container{
            width:94%;
        }

        /* Navbar */
        .nav{
            flex-direction:column;
            gap:15px;
            padding:15px 0;
        }

        nav{
            display:flex;
            flex-wrap:wrap;
            justify-content:center;
            gap:12px;
        }

        nav a{
            margin:0;
            font-size:14px;
        }

        .logo img{
            width:70px;
            height:auto;
        }

        .rainbow-text{
            font-size:22px;
        }

        /* Hero */
        .hero{
            padding:50px 0;
        }

        .hero-wrap{
            grid-template-columns:1fr;
            text-align:center;
            gap:30px;
        }

        .hero h1{
            font-size:32px;
            line-height:1.3;
        }

        .btn{
            padding:12px 22px;
            font-size:14px;
        }

        .product-card-depan img{
            width:220px;
        }

        /* Why Us */
        .why-us{
            padding:70px 0;
        }

        .why-us .title{
            font-size:30px;
        }

        .why-grid{
            flex-direction:column;
            gap:40px;
        }

        .why-card img{
            width:100px;
            height:100px;
        }

        .why-card p{
            font-size:14px;
        }

        /* Banner */
        .ingredients,
        .ingredients-2{
            height:180px;
        }

        .ingredients-content h2{
            font-size:24px;
        }

        .ingredients-content h1{
            font-size:34px;
        }

        /* Best Seller */
        .section-title h2{
            font-size:30px;
        }

        .section-title p{
            font-size:14px;
        }

        .slider-container{
            width:95%;
        }

        .slide{
            min-width:100%;
        }

        .product-card img{
            height:320px;
        }

        /* Gallery */
        .slider-container-toko{
            width:95%;
        }

        .slide-toko{
            min-width:100%;
        }

        .product-card-toko img{
            height:220px;
        }

        /* Video */
        .video-section video{
            width:100%;
        }

        .audio-section audio{
            width:100%;
        }

        /* Social */
        .social-logo{
            width:150px;
        }

        .social-media h2{
            font-size:28px;
        }

        .social-list{
            flex-direction:column;
            gap:20px;
        }

        .social-list a{
            justify-content:center;
            font-size:18px;
        }

        /* Visi Misi */
        .container-visi{
            flex-direction:column;
            gap:40px;
        }

        .visi-text{
            text-align:center;
        }

        .visi-text h2{
            font-size:30px;
        }

        .visi-text p,
        .visi-text li{
            font-size:15px;
        }

        .visi-image img{
            max-width:100%;
        }

        /* Kenapa Rainbow */
        .container-why{
            flex-direction:column;
            gap:35px;
        }

        .why-text{
            text-align:center;
        }

        .why-text h2{
            font-size:30px;
        }

        .why-gallery{
            grid-template-columns:1fr;
        }

        .why-gallery img{
            height:220px;
        }

        /* Contact */
        .contact{
            padding:70px 0;
        }

        .contact h2{
            font-size:30px;
        }

        .container-contact{
            width:94%;
        }

        /* Maps */
        .location-title{
            font-size:30px;
        }

        .location-card h3{
            font-size:24px;
        }

        .maps-box iframe{
            height:250px;
        }

        /* Arrow Slider */
        .prev,
        .next,
        .prev-toko,
        .next-toko{
            width:45px;
            height:45px;
            font-size:22px;
        }

    }

}

}