/* Header */

.header-main-logo{
	position: relative;
}
.header-main-logo:before{
	--width: 248px;
	--height: 230px;
	content:"";
	background: url(https://vivabicho.coolideas.com.br/wp-content/uploads/2024/01/vivabicho-logo-header-particle.png) no-repeat center center / cover;
	bottom: 200%;
	height: var(--height);
	left: calc(50% - (var(--width) / 2));
	opacity: 0;
	position: absolute;
	transition: all .25s ease;
	width: var(--width);
    display:none;
}
#page-header:not(.sticky) .header-main-logo:before{
	bottom: -60px;
	opacity: 1;
}
@media(min-width: 768px){
    .header-main-logo:before{
        display:block;
    }
}

/* Header */