body {
    font-family:sans-serif;
}

header{
    background-color: #8CB07B;
    height: fit-content;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
header .black-box {
    border: 3px white solid;
    border-radius: 2rem;
    height: fit-content;
    padding: 1rem ;
}
header .wrap-header .not-dropdown {
    display: flex;
}
header .wrap-header .not-dropdown ul {
    display: flex;
    padding-left: 0.5rem;
    margin-bottom: 0;
}
header .wrap-header .not-dropdown ul li {
    list-style: none;
    margin: 0 1rem;
}
header .wrap-header .not-dropdown ul li a {
    text-decoration: none;
    color: black;
    transition: 0.2s;
}
header .wrap-header .not-dropdown ul li a:hover {
    text-decoration: underline;
    color: #F5E4D9;
    transition: 0.2s;
}
header .wrap-header .brand {
    margin-left: auto;
    margin-right: 1rem;
    font-weight: 700;
}
header .wrap-header .dropdown {
    display: none;
}
header .wrap-header .dropdown img {
    width: 30px;
    height: auto;
}
header .wrap-header .dropdown button {
    background-color: inherit;
    border: none;

}
header .wrap-header .dropdown button#tutup-menu {
    display: none;
}
header .wrap-header .dropdown .items#menu {
    display: none;
}
header .wrap-header .dropdown ul {
    padding: 0;
    margin-bottom: 0;
}
header .wrap-header .dropdown ul li {
    list-style: none;
    margin: 0.5rem 0 0.5rem 0.5rem;
}
header .wrap-header .dropdown ul li a {
    text-decoration: none;
    color: black;
}
@media screen and (max-width: 576px) {
    header .wrap-header .not-dropdown {
        display: none;
    }
    header .wrap-header .dropdown {
        display: block;
    }
}

.product {
    background-color: #8CB07B;
    min-height: 50vh;
    height: fit-content;
    padding: 1rem 1rem 3rem 1rem;
}
.product .judul {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}
.product .image {
    text-align: center;
    margin-top: 3rem;
}
.product .image img {
    width: 50%;
    height: auto;
    border-radius: 2rem;
}
.product .carousel {
    margin: auto;
}
.product .deskripsi {
    font-weight: 700;
    width: 40vw;
    background-color: inherit;
    border: #F5E4D9 4px solid;
    margin: auto;
    line-height: 3rem;
    border-radius: 1rem;
    padding: 1rem 2rem;
    margin-top: 2rem;
}
.product .deskripsi .non-value {
    width: fit-content;
}
.product .deskripsi .value {
    width: fit-content;
}
.product .deskripsi a {
    width: fit-content;
}
.product button {
    width: fit-content;
    margin-top: 2rem;
    margin-left: 0.5rem;
}
@media screen and (max-width: 991px) {
    .product .deskripsi {
        width: 50vw;
    }
    .product .image img {
        width: 90%;
        height: auto;
    }
}
@media screen and (max-width: 768px) {
    .product .judul {
        font-size: 2rem;
    }
    .product .image img {
        border-radius: 1rem;
    }
    .product .deskripsi {
        width: 80vw;
    }
}
@media screen and (max-width: 576px) {
    .product .image {
        margin-top: 1rem;
    }
    .product .deskripsi {
        font-size: 3vw;
    }
    .product a span {
        font-size: 3vw;
    }
    .product .judul {
        font-size: 6vw;
    }
    .product .image img {
        width: 100%;
    }
}
@media screen and (max-width: 330px){
    .product .deskripsi {
        font-size: 2.5vw;
    }
}