/*
 * 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;
  }
}

#map {
	width: 100%;
	height: 500px;
}

.contact {
	padding: 150px 0px;
}
.contact .col-md-6 {
	padding: 0px 100px;
}

.contact span {
	font-weight: bold;
	color: #000;
}

@media (width: 768px) {
	.contact {
		padding-top: 150px;
		padding-bottom: 150px;
	}
	#under_contact {
		padding-top: 0px !important;
	}
}

@media (max-width: 768px) {
	.contact {
		padding-top: 75px;
		padding-bottom: 60px;
	}
	.contact .col-md-6 {
		padding: 0px 45px;
	}
	#under_contact {
		padding-top: 75px;
	}
}

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