.home-page-container {
    width: 100%;
}

.home-page-container .products-section {
    padding-bottom: 60px;
}

.home-page-container .products-section .fluid-container {
    max-width: 1386px;
    flex-direction: column;
}

.home-page-container .products-section .products {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/*.home-page-container .products-section .products {*/
/*    margin-top: -100px;*/
/*}*/

.home-page-container .products-section .products li {
    width: 280px;
    min-height: 347px;
    margin: 30px 10px 0;
}

.home-page-container .products-section .products li > div {
    height: 100%;
    width: 100%;
    background: var(--white);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .05);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    border: 1px solid #e5e5e5;
}

.home-page-container .products-section .products li img {
    max-width: 100%;
    width: 100%;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .25);
}

.home-page-container .products-section .products li .product-image {
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
}

.home-page-container .products-section .products li .content {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 140px;
    width: 100%;
    text-align: center;
}

.home-page-container .products-section .products li .content > div {
    height: calc(100% - 55px);
    display: flex;
    align-items: center;
}

.home-page-container .products-section .products li .content h6 {
    font-size: 18px;
    font-weight: bold;
}

.home-page-container .products-section .products li .content a {
    border: 2px solid var(--green);
    width: 100%;
    background: var(--white);
    margin-top: 15px;
}

.home-page-container .products-section .products li .content a > span {
    color: var(--green);
}

.home-page-container .products-section .products li .content a:hover {
    background: var(--green);
    border-color: var(--black);
}

.home-page-container .products-section .products li .content a:hover > span {
    color: var(--black);
}

/* MEDIA QUERIES */
@media screen and (max-width: 1254px) {
    .home-page-container .products-section .products {
        justify-content: space-around !important;
    }
}

@media screen and (max-width: 1100px) {
    .home-page-container .products-section .products li {
        width: 200px !important;
        min-height: 0 !important;
    }

    .home-page-container .products-section .products li .content {
        height: 135px !important;
    }

    .home-page-container .products-section .products li .content h6 {
        font-size: 15px !important;
    }
}

@media screen and (max-width: 768px) {
    .home-page-container .products-section .products li {
        width: 45% !important;
    }
}

@media screen and (max-width: 580px) {
    .home-page-container .products-section .products li {
        width: 100% !important;
    }
}
