*{
  scroll-behavior: smooth;
}

/* Menu mobile */
.oculto {
	display:none;
	/* height: 0; */
}

.open {
	height: initial;
	width: initial;
	animation-duration: 1s;
	animation-name: menuin;
	animation-timing-function: ease;
	/* z-index: 30; */
}
  
  @keyframes menuin {
	from {
		transform: translateY(-300px);
	}
	to {
		transform: translateY(0%);
	}
  }

  /* Blue Shadow */
  .blue-shadow{
	box-shadow: -0.5rem 0.5rem #166d8a;
  }

  /* Top del sticky */
  .top-stycky{
	  top:70px;
  }

  /* Mapa fondo */
  .mapa{
	  background-image: url("../img/svg/illustration-map.svg");
	  background-position: center;
	  background-size: contain;
	  background-repeat: no-repeat;
  }

  /* Formulario */
  .form-label {
	opacity: 1;
	transform: translateY(-2rem);
	transform-origin: 0 0;
}

.form-control::placeholder,
.text-control::placeholder {
	color: transparent;
}

.form-control:focus {
	box-shadow: none;
	outline: none;

}

.form-control + .form-label{
	color: white;
}

.form-control:focus +.form-label{
	color:#008be7;
	transform: translateY(-3.5rem);
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label,
.form-control:-webkit-autofill + .form-label {
	transform: translateY(-3.5rem);
	color: #008be7;
}



.text-control:focus + .message-label,
.text-control:not(:placeholder-shown) + .message-label{
	color: #008be7;
  }


