/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

.box-product {
    padding: 20px;
    text-align: center;
    background: #fff;
    height: 400px; 
    margin: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
}

.box-product img {
    width: 90%;
}


.no-padding{
	padding: 0px !important;
	overflow: hidden;
}

.box-overflow{
	overflow: hidden;
	margin: 20px 0px;
}



.box-post{
    background-size: cover;
    background-position: center;
    /* margin-bottom: 10px; */
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.box-info{
    height: 300px;
    padding: 150px 50px;
}

.box-post:hover {
	-ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}



.box-post> .box-info a{
	opacity: 0;
}

.box-post:hover .box-info h3{
	opacity: 1;
}

.box-post:hover .box-info a{
	opacity: 1;
}

.box-post h3{
    color: #fff;
}
