body {
    margin: 0;
    height: 1000px;
}

.topnav {
    overflow: hidden;
    background-color: #2e1609;
    position: fixed;
    width: 100%;
}

.topnav a {
    float: right;
    display: block;
    color: rgb(241, 241, 241);
    text-align: left;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #05882c;
    color: white;
}

.topnav .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: fixed;
    }
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .topnav a:hover {
        background-color: #ddd;
        color: black;
    }
    .topnav a.active {
        background-color: #05882c;
        color: white;
    }
}

.header {
    height: 150px;
    padding-left: 0;
    background: url("/img/header.png");
    padding: 40px 10px;
    text-align: left;
}

.child img {
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 0;
}

.child1 img {
    margin-left: 0;
    height: 150px;
    float:left;
    width:400px;
    margin-top: 10px;
}

@media screen and (max-width: 600px) {
    .child img {
        margin-top: 30px;
        margin-left: 30px;
        height: 100px;
        width: 100px;
        margin-right: 0;
    }

    .child1 img {
        margin-left: 0;
        height: 80px;
        width: 300px;
        margin-top: 25px;
    }
    .header {
        height: 120px;
    }
}

.bodyindx {
    margin: 0;
    background: url("/img/background2.png");
}

.bdy {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 20px;
}

.colum {
    flex-basis: 10%;
}

.colum img {
    padding: 0;
    margin: 20px;
    margin-top: 20px;
    height: 200px;
    width: 200px;
    border-radius: 20px;
}

.text h2 {
    margin-left: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.text p {
    padding-left: 10px;
    text-align: justify;
    font-size: 20px;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    margin-right: 50px;
}

@media screen and (max-width: 600px) {
    .bdy {
        display: inline;
    }
    .colum {
        flex-basis: 40%;
    }

    .colum img {
        float: left;
        padding: 0;
        height: 150px;
        width: 160px;
        margin-top: 0;
        margin-left: 20px;
    }

    .text p {
        margin-left: 5px;
        padding-left: 0;
        margin-right: 10px;
        text-align: justify;
    }
}

.informasi {
    display: flex;
    margin: 10px;
    background-color: white;
    border-radius: 20px;
    padding: 10px;
    border: 2px solid black;
}

.informasi img {
    padding: 10px;
    width: 150px;
    height: 200px;
}

.informasi p {
    margin-left: 30px;
    margin-right: 20px;
    padding: 0;
    float: left;
    text-align: justify;
    font-size: 20px;
    font-style: normal;
    text-decoration: none;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.informasi strong {
    font-size: 20px;
}

.danger {
    color: red;
    font-size: 20px;
}

@media screen and (max-width: 600px) {
    .informasi {
        flex-direction: column;
        width: 90%;
    }

    .informasi img {
        margin: 0;
        padding: 0;
        border-radius: 10px;
        display: inline;
        width: 80%;
        height: 300px;
        border-radius: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .informasi p {
        text-align: justify;
        margin: 10px;
        width: 95%;
        margin-right: 5px;
        font-size: 14px;
    }
}

.product {
    background-color: white;
    margin: 5px;
    width: 200px;
    border: 1px solid #333;
}
.product,
.product img {
    box-sizing: border-box;
}

.product:hover {
    border: 2px solid #007263;
}

.product img {
    padding: 15px;
    width: 100%;
    height: 200px;
}

.desc {
    padding: 5px;
    margin: 0;
    text-align: center;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin: 10px;
    grid-gap: 10px;
}

.desc h3,
.desc h5 {
    margin: 0;
    padding: 5px;
}

.product button {
    background-color: rgb(66, 66, 66);
    border: 0;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    transition: background-color 0.3 ease;
}

.product button:hover {
    background-color: lawngreen;
}

.glyy1 button {
    background-color: white;
    color: black;
    font-size: 16px;
    margin-left: 10px;
    padding: 10px 10px;
    border: 1px solid black;
    cursor: pointer;
}

.glyy2 button {
    background-color: white;
    color: black;
    font-size: 16px;
    margin-left: 15px;
    padding: 10px 20px;
    border: 1px solid black;
    cursor: pointer;
}

.glyy1 button:hover {
    background-color: #05882c;
}

.glyy2 button:hover {
    background-color: #05882c;
}

@media only screen and (max-width: 700px) {
    .product-list {
        width: 100%;
        margin-left: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .product {
        width: 180px;
    }

    .glyy2 button {
        margin-left: 5px;
        padding: 10px 10px;
    }
}

@media only screen and (max-width: 400px) {
    .product-list {
        width: 50%;
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
        grid-gap: 5px;
    }

    .product {
        width: 170px;
    }
}

.footer {
    margin-top: 50px;
    background-color: #333;
    color: white;
    padding: 20px;
    padding-left: 0;
    margin-left: 0;
}

.footer-col a {
    font-size: 20px;
}

.footer-col iframe {
    width: 400px;
    height: 200px;
    margin-left: 100px;
    border-radius: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    max-width: 1170px;
    margin: auto;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul li a {
    font-size: 20px;
    color: white;
}

@media (max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }

    .footer-col ul {
        margin-left: 30px;
    }

    .footer-col ul li a {
        font-size: 18px;
        color: white;
    }

    .footer-col iframe {
        width: 400px;
        height: 200px;
        margin-left: 50px;
        border-radius: 20px;
    }

    .footer-col iframe {
        margin: 0;
        width: 350px;
    }
}

@media (max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

.list hr {
    margin-top: 50px;
    margin-left: 20px;
    margin-bottom: 90px;
}
