.np-page-content .container-fluid{
	padding: 0px;
}

/* HERO */
.np-page-hero {
    position: relative;
    height: 580px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.np-page-hero-overlay {
    position: absolute;
    inset: 0;
   /* background: rgba(0,0,0,.35);*/
}

/* WRAPPER INTERNO */
.np-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* BOX LATERALE */
.np-colored-box {
    max-width: 520px;
    padding: 60px 70px;
    border-radius: 0 200px 200px 0;
    backdrop-filter: blur(6px);
    background-color: rgba(72, 86, 147, 0.85); /* fallback */
    color: #ffffff;
    opacity: 0.8 !important;
}

/* LOGO */
.np-unit-logo {
    max-height: 80px;
    margin-bottom: 25px;
}

/* TITOLO */
.np-colored-title {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #485693;
}

/* FADE IN */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}