#products {
    position: relative;
}

.products {
    flex-wrap: nowrap;
    margin-top: 2rem;
    overflow-x: hidden;
    padding: 1rem 0;
    flex-direction: row-reverse;
}

#products .product-item {
    max-width: 100%;
    height: 400px;
    position: relative;
    box-shadow: 1px 1px 20px rgba(12, 88, 128, 0.5);
    padding: 1rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

#products .product-item:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.product-image {
    text-align: center;
}

.product-item img {
    width: 70%;
    height: 200px;
    object-fit: contain;
}

.product-item h3 {
    margin-top: 1rem;
    font-weight: bolder;
}

.product-item p {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: #1a864a;
}

.product-item .product-button {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 90%;
    bottom: 2%;
    right: 50%;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
}

.product-controlls {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    right: 5%;
}

.product-controlls .next-product,
.product-controlls .prev-product {
    background-color: #0c5880;
    color: #00bade;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product-controlls .next-product:hover,
.product-controlls .prev-product:hover {
    color: #0c5880;
    background-color: #00bade;
}