.mt-1 {
    margin-top: 0.125em;
    ;
}

.mt-2 {
    margin-top: 0.250em;
    ;
}

.mt-3 {
    margin-top: 0.375em;
    ;
}

.mt-4 {
    margin-top: 0.5em;
    ;
}

.mt-5 {
    margin-top: 0.625em;
    ;
}

.product.bank.active {
    border: 4px solid #3895D3;
}

.category-product {
    margin: 50px 50px;
    min-height: 250px;
}

.category-product h4 {
    font-weight: bold;
    font-size: 22px;
}

.product {
    position: relative;
    background-color: rgb(235, 235, 235);
    margin: 0px 15px;
    margin-bottom: 15px;
    padding: 0px;
    border-radius: 5px;
}

.product:hover {
    border-color: purple;
    border: 2px solid aquamarine;
}

.product h6 {
    padding: 0px 5px;
    margin-top: 5px;
    text-align: center;
}

.product img:hover+div {
    opacity: 1;
}

.product .btn-container:hover {
    opacity: 1;
    background-color: rgba(40, 104, 188, 1);
}

.product .btn-container {
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    top: 188px;
    text-align: center;
    width: 100%;
    padding-top: 10px;
    font-weight: bold;
    height: 40px;
    color: white;
    background-color: rgba(0, 64, 128, 0.8);
}

.product .judul {
    font-weight: bold;
}

.bank .judul {
    font-weight: 600;
    color: white;
}

.product img {
    cursor: pointer;
    width: 100%;
    height: 228px;
    object-fit: contain;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {}


/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {}


/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    .category-product {
        margin: 50px 10%;
    }
    .category-product h4 {
        font-size: 24px;
    }
    .category-product h6 {
        display: none;
    }
    .category-product h6 {
        display: block;
    }
}