﻿/* ----------------------------------------------------------------
			[ All Css Plugins & Helper Classes File ]
-----------------------------------------------------------------*/

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/* ----------------------------------------------------------------
			sfondi
-----------------------------------------------------------------*/
    .bg3{
	background-image: url("../img/fragola2.png"); background-repeat: no-repeat; background-position: bottom right;
	}

    .bg2{
	background-image: url("../img/fragola1.png");background-repeat: no-repeat
	}
	
    .bg1{
	background-image: url("../img/veg_pattern_01.png");background-repeat: repeat; 
	}
	
@media (max-width: 768px) {
  .bg3 {
    background-image: none !important; /* Rimuove l'immagine di sfondo */
  }
  
  .bg2 {
    background-image: none !important; /* Rimuove l'immagine di sfondo */
  }
}

/* ----------------------------------------------------------------
			visibile 1/0
-----------------------------------------------------------------*/
.hide0 {
display:none;
}
.hide1 {
display:visibility;
}

