@charset "utf-8";

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
	flex-wrap: wrap;
}

/* Ajustar Tamanho das imagens aqui */
.image-container {
	width: calc(33.33% - 10px); 
	margin:5px;
    position: relative; 
}
@media(max-width:1000px){
	.image-container {
	width: calc(50% - 10px); 
}
	}
@media(max-width:700px){
	.image-container {
	width: calc(100% - 10px); 
}
	}	

.image {
    width: 100%;
	border-radius:10px;
    height: auto;
    display: block;
}

.before {
    z-index: 1;
}

.after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    clip: rect(0, 50%, 100%, 0);
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background-color: #fff;
    z-index: 3;
    cursor: ew-resize;
    transition: background-color 0.3s;
}

.slider:hover {
    background-color: #ff0000;
}
