/*
Theme Name: Petclean
Theme URI: https://elementor.com/
Description: Petclean Theme
Author: Skymedia
Author URI: https://skymedia.cl/
Template: hello-elementor
Version: 1.0
Text Domain: petclean
*/


.petclean-bloques-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.petclean-card {
    width: 20%;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: center;
	padding: 20px 0px 0px 0px;
	}

.petclean-card img{
	max-height: 100px;
}

.petclean-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.petclean-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.petclean-card-text {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.petclean-card-text h3 {
   	font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  color: #FFFFFF;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .petclean-card {
        width: 100%;
			padding: 0px;
    }

    .petclean-card-inner {
        flex-direction: row;
        align-items: center;
    }

    .petclean-card-img {
        width: 30%;
    }

    .petclean-card-img img {
        width: 100%;
        height: auto;
    }

    .petclean-card-text {
        width: 70%;
        text-align: left;
        padding: 15px;
    }
	.petclean-card-text{
		justify-content: left
	}
}