.content_container {
    width: 100%;
    padding: 50px 0;
}

.main_title {
    background-image: url(https://harlomaquinas.com.br/wp-content/uploads/2021/05/banner-home-prensas-2.jpg);
    background-position: 0px -293px;
    width: 100%;
    height: auto;
    padding: 80px 0;
    background-size: cover;
}


.main_title h1 {
    text-align: center;
    font-size: 58px;
    text-transform: uppercase;
    border-radius: 7px;
    padding: 20px 0;
    color: #fff;
}

.content_container_products {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
}

.product_content {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding: 10px;
    margin: 0 7px 25px;
    background: #fff;
    height: 540px;
    justify-content: space-around;
}

.product_content h2 {
    color: #ff0000cc;
    text-align: center;
}

.product_content a {
    text-align: center;
}

.product_content img {
    margin-top: 8px;
    height: 265px;
    border-radius: 6px;
}

.product_content p {
    text-align: center;
    margin-top: 10px;
    color: #585858;
    line-height: 25px;
}

.btn_about {
    color: #fff;
    background: #ff0000cc;
    padding: 12px 55px;
    border-radius: 5px;
    margin: 6px 0;
}

@media (max-width: 991px) {
    .btn_about {
        padding: 12px 12px;
    }

    .product_content {
        width: 45%;
        margin-bottom: 20px;
    }

    .product_content img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .product_content {
        width: 100%;
        margin: 0 0 20px 0;
        height: auto;
    }

    .content_container_products {
        margin-top: 25px;
    }

    .content_container {
        background-size: contain;
    }

    .main_title {
        background-position: 0px;
        padding: 40px;
    }

    .main_title h1 {
        font-size: 32px;

    }
}

