/* barraMenu.css  */


#barraMenu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 45px;
	z-index: 100;
	background-color: var(--verdescuro);
}

#containerMenu {
	width: 100%;
	height: 100%;
	max-width: 1500px;
	margin: 0 auto;
	position: relative;
}

#logoDaldin {
	position: absolute;
	bottom: 9px;
	left: 15px;
	transform: translateY(25px);
	opacity: 0;
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
	animation: titleAnimationLogo 1.3s linear 2.3s 1 normal forwards;
}

#boxMenu {
	position: absolute;
	top: 0;
	right: 32px;
	width: 60px;
	height: 45px;
	cursor: pointer;
	transform: translateY(25px);
	opacity: 0;
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
	animation: titleAnimationLogo 1.2s linear 2.6s 1 normal forwards;
}

#line1 {
	position: absolute;
	top: 16px;
	left: 0;
	height: 2px;
	width: 50px;
	background-color: var(--rosa);
}

#line2 {
	position: absolute;
	top: 24px;
	left: 0;
	height: 2px;
	width: 36px;
	background-color: var(--rosa);
}

@keyframes titleAnimationLogo {
	0% {
		transform: translateY(25px);
		opacity: 0;
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
	}

	25% {
		clip-path: polygon(0 100%, 100% 100%, 100% 90%, 0 75%);
	}

	50% {
		clip-path: polygon(0 100%, 100% 100%, 100% 75%, 0 25%);
	}

	75% {
		clip-path: polygon(0 100%, 100% 100%, 100% 35%, 0 12%);
	}

	100% {
		transform: translateY(0);
		opacity: 1;
		clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
	}

}



@media screen and (max-width:400px) {
	#logoDaldin img {
		top: 11px;
		height: 19px;
	}

	#boxMenu {
		right: 20px;
	}
}
/* SCROLL BAR */
  /* Style the scroll: fixed position (always stay at the top) */
	.scroll {
	  position: fixed;
	  top: 43px;
	  z-index: 190;
	  width: 100%;
	  background-color: transparent;
	}

/* The progress container (grey background) */
	.progress-container {
	  width: 100%;
	  height: 1px;
	  background: transparent;
	}

/* The progress bar (scroll indicator) */
	.progress-bar {
	  height: 1px;
	  background: red;
	  width: 0%;
	}