/* section produck kategoriy */
.section2 {
    padding: 2%;
    width: auto;
    width: 80%;
    margin: auto;
    overflow: hidden;
}
.baner {
    width: 100%; 
    border-bottom: black solid 3px; 
    margin-top: 8%;
}
.article {
    list-style: none;
}
.container {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.container2 {
    position: relative;
    width: 200px;
    height: 250px;
    margin: 1%;
    padding-top: 1%;
    cursor: pointer;
}
.animasi {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: background-color 0.5s ease-out, opacity 0.5s ease-out;
    background-color: transparent;
    border-radius: 10px;
}
.animasi:hover {
    background-color: blue;
    opacity: 0.5;
    border-radius: 10px;
}

/* selection produck */
.logoProduk {
    width: 150px;
    border-radius: 50%;
    border: rgb(0, 0, 0) solid 1px;
}
.containerProduk {
    width: 310px;
    border-radius: 10px;
    padding: 0.2% 0;
    height: auto;
    margin: 6px;
    position: relative;
    border: blue solid 2px;
}
.pngProduk {
    width: 300px;
    margin: auto;
}
.textjudulProduct {
    text-align: left;
    padding: 3px 2px;
    font-weight: 200;
}
.textProduct {
    padding: 0 2%; 
    border-radius: 3px;
    text-align: center;
    border: 2px white solid;
    width: auto;
    font-weight: 300;
    color: white;
    background-color: rgb(238, 12, 12);
}
.textProduct2 {
    background-color: blue; 
    width: 45%; 
    align-content: center; 
    border-radius: 3px; 
    border: 2px white solid;
    color: white;
    font-weight: 600;
    font-size: 25px;
}
.pdfcdr {
    display: flex;    
    gap: 1%;
    text-align: center;
}
.spesifikasi {
    display: flex; 
    justify-content: space-between;
}
.spesifikasi2 {
    width: 53%;
}
.button{
    padding: 5px; 
    width: 90%; 
    text-align: center; 
    border-radius: 5px; 
    background-color: blue; 
    margin: auto; 
    font-size: 30px; 
    font-weight: 400;
    cursor: pointer;
}
.button:hover {
    transition: 0.5s;
    transform: scale(1.1);
    color: white;
}

/* logo brand */
.sectionBrand {
    display: flex;
    margin: auto;
    padding: 2% 0;
    gap: 0.96%;
    animation: geserkanan 10s linear infinite alternate;
}

.imgBrand {
    width: 12%;
    flex-shrink: 0;
    opacity: 0.7;
}

@keyframes geserkanan {
    0% {
      transform: translateX(50);
    }
    100% {
      transform: translateX(-50%);
    }
}


/* responesive tabet */
@media only screen and (max-width:800px) {
    h2{
        font-size: 130%;
    }
    .containerProduk {
        width: 250px;
        height: auto;
        margin: 6px;
        position: relative;
        border: blue solid 2px;
    }
    .pngProduk {
        width: 100%;
        margin: auto;
    }
    .spesifikasi {
        display: flex; 
        justify-content: space-between;
    }
    .spesifikasi2 {
        width: 53%;
    }
    .textProduct {
        font-size: 12px;
    }
    .textProduct2 {
        font-size: 20px;
    }
}

/* responesive mobile */
@media only screen and (max-width:500px) {
    .baner {
        padding-top: 20%;
    }
    .logoProduk {
        width: 80px;
    }
    .section2 {
        width: 99%;
        padding: 0;
    }
    #section2 {
        padding-top: 20%;
    }
    .containerProduk {
        width: 45%;
        height: auto;
        margin: 6px;
        position: relative;
        border: blue solid 2px;
    }
    .container2 {
        width: 90px;
        height: 130px;
    }
    .pngProduk {
        width: 100%;
        margin: auto;
    }
    .textProduct {
        font-size: 10px;
    }
    .textProduct2 {
        font-size: 20px;
    }
    .textNavigasi2 {
        font-size: 0.5rem;
    }
    .textProduct {
        padding: 0 0%;
    }
    .textProduct2 {
        font-size: 1rem;
    }
    #animasiBrand {
        display: none;
    }
    .section2 {
        padding-bottom: 10%;
    }
    p {
        padding: 0 1%;
    }
    h2 {
        padding: 0 1%;
    }
    .containerHome {
        display: none;
    }
    .textjudulProduct {
        font-size: 0.8rem;
    }
}