
/* HERO SECTION */


.header-container {
	width: 100%;
	height: 200dvh;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	z-index: 1;
}

.header-container .logo-wrapper {
	width: 100%;
	height: 100dvh;
	top: 0;
	z-index: 3;
	padding: 0 var(--spacing-wrapper);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* .header-container .header .logo-wrapper .enablesticky { border:1px solid blue !important; } */

.header-container .logo-wrapper .enablesticky {
	width: 100%;
	top:0;
	position:sticky;
	padding: var(--spacing-section-top) 0;
	gap: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.header-container .logo-wrapper .enablesticky .icone-hidden {
	width: 40%;
	height: auto;
	display: none;
}

.header-container .logo-wrapper img {
	width: 100%;
	height:auto;
}

.header {
	width: 100%;
	height: 100dvh;
 	position: sticky;
	top:0;
	padding-top: 0;
	background-color: var(--color-accent-yellow);
	z-index: 0;
}

.header .video-section { 
	width: 100%;
	height: 100dvh;
	/* position: relative; */
	position: absolute;
}

.header .video-section .bg-video {
	width: 100%;
	height: 100dvh;
	object-fit: cover;
}

.header-container .header-scroll-section {
	width: 100%;
	height: 100dvh;
	z-index: 10;
	position: absolute;
	top:0;
	pointer-events: none;
}

.header-scroll-section .logo-wrapper { 
	position: sticky;
}

/* .header-scroll-section .logo-wrapper .enablesticky { position: static; } */

.header-container .header-scroll-section .overflow-section {
	width: 100%;
	height: 200dvh;
	background-color: #fff;
	clip-path: ellipse(100% 50% at 50% 100%);
	 overflow: clip;
	position: relative;
}


@media (max-width: 1800px) { 
	.header-container .header-scroll-section .overflow-section { clip-path: ellipse(110% 50% at 50% 100%); }
}

@media (max-width: 1500px) {
	.header-container .header-scroll-section .overflow-section { clip-path: ellipse(120% 50% at 50% 100%); }
}

@media (max-width: 1024px) {
	.header-container .header-scroll-section .overflow-section { clip-path: ellipse(170% 50% at 50% 100%); }
}

@media (max-width: 768px) {
	.header-container .logo-wrapper .enablesticky .icone-hidden { display: block; }
	.header-container .header-scroll-section .overflow-section { clip-path: ellipse(200% 50% at 50% 100%); }
}

@media (max-width: 500px) {
	.header-container .header-scroll-section .overflow-section { clip-path: ellipse(220% 50% at 50% 100%);  }
}