.home-products {
    margin-top: 30px;
}

.home-products__title{
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
}

.home-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    padding: 10px 0;
    min-height: 380px;
    margin-bottom: 20px;
}

/*BANNER WRAPPER*/

.home-banner {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 450px;
    border-radius: 16px;
    overflow: hidden;
    margin: 40px 0;
    background: #e8e1db;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.home-banner__content {
    width: 40%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.home-banner__title {
    font-weight: 400;
}

.home-banner__image {
    width: 60%;
}

.home-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-banner__button {
    width: 50%;
    text-align: center;
    display: inline-block;
    padding: 12px 35px;
    background: var(--green);
    color: #fff !important;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease;
}

.home-banner__button:hover {
    background: var(--green-hover);
}

.home-banner--right {
    flex-direction: row;
}

.home-banner--left {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {

    .home-banner {
        flex-direction: column;
        min-height: auto;
    }

    .home-banner--right {
        flex-direction: column;
    }

    .home-banner__content,
    .home-banner__image {
        width: 100%;
    }

    .home-banner__content {
        padding: 40px 25px;
        text-align: justify;
        align-items: center;
    }

    .home-banner__image {
        max-height: 280px;
    }

    .home-banner__image img {
        height: 100%;
        object-fit: cover;
    }
}