.products {
    position: relative;
    bottom: 80px;
}

.products-grid .btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    top: 25px;
    position: relative;
}

.products-items {
    display: flex;
    grid-gap: 40px;
    flex-wrap: wrap;
}

.product-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.product-item h2 {
    font-size: 1.75rem;
    font-family: 'Barlow Condensed', sans-serif;
    color: #182c20;
    font-weight: 600;
    text-transform: uppercase;
}

.product-item h2::after {
    content: "";
    width: 20px;
    height: 2px;
    display: block;
    background: #fcce01;
}

.product-call {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.product-call a:hover {
    scale: 1.05;
}


@media only screen and (max-width: 345px) {
    .product-item {
        min-width: 260px;
    }
}