<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    transition: 0.3s;
}

#solution {
    color: #09A84E;
}

/* solution */
.product {
    margin-top: 30px;
}

.product .product-text {
    width: 1550px;
    margin: auto;
    align-items: center;
    text-align: center;
}

.product-text .text {
    width: 650px;
    margin: auto;
    text-align: center;
}

.product-text .text .title {
    font-size: 40px;
    font-weight: 800;
}
.product-text .text .body{
    font-size: 20px;
}

.product .product-text .filter {
    display: flex;
    margin-top: 30px;
    width: 1320px;
    margin: auto;
}

.product-text .btn-group {
    margin-bottom: 20px;
}

.product-text .btn-group .btn {
    background-color: #124B8D;
    color: white;
    width: 300px;
    height: 70px;
    border-radius: 5px;
    text-align: center;
    font-size: 22px;
}

.btn-group {
    margin-top: 40px;
    width: 1320px;
}

.btn-group .dropdown-menu {
    background-color: white;
}

.btn-group .dropdown-menu .btn {
    margin-top: 5px;
}

.product-text .filter .filter-items {
    max-width: 1200px;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
}

.filterDiv {
    margin: 2px;
    display: none;
    overflow: hidden;
    width: 655px;
    height: 490px;
    border-radius: 10px; 
}

.filterDiv img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.filterDiv img:hover {
    scale: 1.1;
}
.filter .filter-items a{
    overflow: hidden;
    position: relative;
}
.visible {
    display: grid;
}

@media only screen and (max-width:1600px) {
    .product .product-text {
        width: 1100px;
        margin: auto;
    }

    .product .product-text .filter {
        width: 1000px;
    }

    .filterDiv {
        width: 494px;
        height: 350px;
    }

    .product-text .btn-group .btn {
        width: 200px;
        font-size: 20px;
        height: 60px;
    }

    .btn-group {
        margin-top: 40px;
        width: 1000px;
    }
}

@media only screen and (max-width:1100px) {
    .product .product-text {
        width: 750px;
        margin: auto;
    }

    .product .product-text .filter {
        width: 700px;
    }

    .product-text .filter .filter-items {
        max-width: 1200px;
        grid-template-columns: repeat(2, 1fr);
    }

    .filterDiv {
        width: 344px;
        height: 250px;
    }

    .btn-group {
        margin-top: 40px;
        width: 700px;
    }

    .btn-group .dropdown-menu .btn {
        height: 40px;
    }

}

@media only screen and (max-width:600px) {
    .product {
        margin-top: 20px;
    }

    .product .product-text {
        width: 90%;
        margin: auto;
    }

    .product-text .text {
        width: 95%;
    }

    .product-text .text .title {
        font-size: 20px;
    }

    .product-text .text .body {
        font-size: 16px;
    }

    .product .product-text .filter {
        display: block;
        width: 100%;
    }

    .product-text .filter .filter-items {
        max-width: 100%;
        grid-template-columns: repeat(1, 100%);
    }

    .product-text .btn-group {
        margin-left: 8px;
    }

    .filterDiv {
        width: 95%;
        margin: auto;
        height: 250px;
    }

    .btn-group {
        width: 95%;
        margin-right: 8px;
    }

    .btn-group .dropdown-menu .btn {
        height: 40px;
        font-size: 14px;
    }
}</pre></body></html>