.fpAllProducts{
    width: 100%;
    height: auto;
    padding: 40px 0 30px 0;
}

.fpAllProducts>.innerSpacing{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.fpAllProducts>h1{
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    font-family: var(--font2);
    font-size: 210%;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize;
    color: #373435;
}

.fpAllProducts>h1>span{
    font-weight: 400;
}

@media only screen and (max-width: 1200px) {
    .fpAllProducts>.innerSpacing{
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media only screen and (max-width: 992px) {
    .fpAllProducts>h1{
        font-size: 180%;
    }

    .fpAllProducts>.innerSpacing{
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .fpAllProducts>h1{
        font-size: 165%;
    }

    .fpAllProducts>.innerSpacing{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media only screen and (max-width: 576px) {
    .fpAllProducts>h1{
        font-size: 150%;
    }
}