.products {
    font-family: 'Open Sans', sans-serif;
    padding-top: 50px;
}

.product-heading {
    width: 100%;
    text-align: center;
    /* border-bottom: 2px solid rgb(208, 219, 218); */
    line-height: 0.1em;
    /* margin: 10px 0 20px; */

}

.product-heading span {
    background: #fff;
    padding: 0 10px;
    font-weight: bold;
}

.single-product {
    padding: 30px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.product-item_1 {
    /* margin-right: 100px; */
}

.divider {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.product-img {
    height: 200px;
}

.divider-div {
    margin-top: 100px;
    margin-bottom: 70px;
}

.divider {
    margin-top: 70px;

}

.product-item h3 {
    font-size: 25px;
}

.product-item p {
    font-size: 18px;
}

.product-item p::first-letter {
    font-size: 35px;
    font-weight: bold;
}

.divider_item h5 {
    font-size: 20px;
}

@media screen and (max-width: 1600px) {
    .product-heading {
        font-size: 30px;
    }

    .product-img {
        height: 180px;
    }

    .product-item h3 {
        font-size: 23px;
    }

    .product-item p {
        font-size: 17px;
    }

    .divider-heading {
        font-size: 21px;
    }

    .divider_item h5 {
        font-size: 18px;
    }


}

@media screen and (max-width: 767px) {
    .product-heading {
        font-size: 27px;
    }

    .product-img {
        height: 170px;
    }

    .product-item h3 {
        font-size: 20px;
    }

    .product-item p {
        font-size: 16px;
    }

    .divider-heading {
        font-size: 18px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .divider_item h5 {
        font-size: 16px;
    }

    .single-product {

        flex-wrap: wrap;

    }


}