/*

Theme Name: juancargarma

Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team

Author: Elementor Team

Author URI: https://elementor.com/

Template: hello-elementor

Version: 1.0

Text Domain: juancargarma-child

License: GNU General Public License v3 or later.

License URI: https://www.gnu.org/licenses/gpl-3.0.html

*/


#hero-images {
	position: relative;
	margin: 0px auto;
}

/* Estilo para el efecto de overlay con opacidad en hover */
.parallelogram-mask {
	display: block;
    overflow: hidden;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); /* Máscara diagonal */
    transition: all 0.3s ease;
}

.parallelogram-mask:hover {
    transform: scale(1.05);
}

#hero-1 {
	position: absolute;
	width: calc(33.33% + 5px);
	left: 7%;
}

#hero-2{
	position: absolute;
	width: calc(33.33% + 5px);
	left: 33%;
}

#hero-3{
	position: absolute;
	width: calc(33.33% + 5px);
	left:59%;
}

/*
.parallelogram-mask::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.parallelogram-mask:hover::after {
    opacity: 1;
}

.parallelogram-mask img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(60%); 
    transition: filter 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 0; 
}

.parallelogram-mask:hover img {
    filter: brightness(70%); 
    transform: scale(1.02); 
}
*/