/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 10 2025 | 17:35:06 */
.logo-white {
	filter: brightness(0) invert(1);
}

.landing-menu {
	backdrop-filter: blur(14px);
}

.text-color-secondary {
	color: #008061;
}

/* WRAPPER: mantiene las curvas */
.clip-wrap{
	z-index: 1;
	/* opcional */
	background: transparent;
	pointer-events: none; /* si solo es decorativo */
}

/* Relleno blanco con SKEW (solo aquí aplicamos clip-path) */
.clip-wrap .skew-fill{
	position: absolute;
	inset: 0;               /* top/right/bottom/left: 0 */
	background: #fff;
	z-index: 0;             /* debajo de las curvas */
	/* ajusta 100px para la “mordida” diagonal del lateral izquierdo */
	clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%, 0 100px);
}

/* CURVAS con pseudo-elementos sobre el wrapper */
.clip-wrap::before {
	content: "";
	position: absolute;
	height: 64px;           /* = 2 * radio */
	width: 32px;            /* radio de la curva */
	background: transparent;
	border-bottom-right-radius: 32px;
	box-shadow: 0 32px 0 0 #fff;  /* color del fondo que “corta” */
	z-index: 1;             /* por encima del relleno skew */
}

/* Curva arriba-izquierda del borde superior */
.clip-wrap::before{
	top: -64px;
	left: auto;
	right: 0;
}
