main {
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
}


main .bg-1 {
    position: absolute;
    right: 7.5%;
    top: 10%;
}

main .bg-2 {
    position: absolute;
    left: -50px;
    width: 180px;
    top: 50%;
}

main .title {
    text-align: center;
}

main #btnList {
    margin-left: 1.9rem;
}

main .breadcrumb-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
}

main .breadcrumb-wrapper a {
    color: #000 !important;
    text-decoration: none;
}

main .breadcrumb-wrapper a:hover {
    text-decoration: underline;
}

main .products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
}

main .products>* {
    flex: 0 0 25%;
    margin-bottom: 35px;
}

main .products .product-card {
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    main .products>* {
        flex: 0 0 33.333%;
    }
}


@media screen and (max-width: 992px) {
    main .products>* {
        flex: 0 0 50%;
    }

    main {
        padding: 40px 0;
    }

    main .title {
        font-size: 32px;
    }

    main .products {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    main .products>* {
        flex: 0 0 100%;
    }

    main #btnList {
        margin-left: 0;
    }

    main div:has(#btnList) {
        text-align: center;
    }
}