/*
 * Author: Luca Arzilli, ALSolutions
 *
 * Project Name: Campo Al Pero
 *
 */

/* HOME PAGE */

#scroll-down a span {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
#scroll-down a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.mobile_image {
	display: none;
}

@media (width: 768px) {
	.desktop_image {
		display: initial !important;
	}
	.mobile_image {
		display: none !important;
	}
}

@media (max-width: 768px){
	.desktop_image {
		display: none;
	}
	
	.mobile_image {
		display: initial;
	}
}

@media only screen and (orientation: portrait) {
	header {
		background-image: url("../img/home/CAMPOALPERO-HOME.jpg");
	}
}