.block-products-wrapper {
    display: flex;
	margin: 4rem -2rem 0 -2rem;
}

.block-products-product {
    border: 1px solid transparent;
	width: 100%;
	margin: 0 0.5rem;
}

.block-products-product:hover {
    border-color: inherit;
}

.block-products-product a {
    padding: 1.5rem;
    display: block;
	text-decoration: none;
}



.product-title-price h4 {
    margin: 0 1rem 0 0;
}

.product-title-price {
    display: flex;
    align-items: baseline;
    margin: 3rem 0 2rem;
}

.block-products-product p {
    margin: 0;
}


p.product-button-small {
    border: 1px solid;
    padding: 0.5rem 1rem;
    border-radius: 10rem;
    text-decoration: none;
    margin-top: 2rem;
    line-height: 1;
    display: inline-block;
transition: .3s;
}

.block-products-product:hover p.product-button-small {
    background: #172a01;
    border-color: #172a01;
    color: #fff;
}

.block-products-product figure {
    position: relative;
    height: 0;
    padding-bottom: 125%;
    overflow: hidden;
    width: 100%;
}

.block-products-product figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-figure-wrapper img {
    transition: .3s;
}
.product-figure-wrapper:hover img {
    transform: scale(1.05);
}

.product-title-paragraph {
    display: flex;
    align-items: flex-end;
    margin-bottom: 6rem;
}

.product-title-paragraph h2 {
    margin: 0;
    width: 50%;
}

.product-title-paragraph p {
    width: 50%;
    margin: 3rem 0 0 0;
    padding-left: 8rem;
}


/* Desktop small */
@media only screen and (max-width: 900px) {
 .product-title-price {
    flex-direction: column;
}

.block-products-product a {
    padding: 1rem;
}

.block-products-product {
    margin: 0;
}

.block-products-wrapper {
    margin: 4rem -1rem 0 -1rem;
}
}

/* Tablet */
@media only screen and (max-width: 700px) {
  .product-title-paragraph {
    flex-direction: column;
}

.product-title-paragraph h2 {
    width: 100%;
}

.product-title-paragraph p.has-large-font-size {
    width: 100%;
        padding-left: 0;
}
}


/* Iphone */
@media only screen and (max-width: 450px) {
  
}