.hero-carousel {
    height: 500px;
    overflow: hidden;
}

.hero-carousel img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover;
    object-position: center center;
}


@media (max-width: 767px) {
    .hero-carousel,
    .hero-carousel img {
        height: 350px !important;
    }
}

.hero-section {
    position: relative;
}

.hero-content {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    width: 550px;
    max-width: 90%;

    padding: 30px 40px;
    text-align: center;

    background: rgba(255, 255, 255, 0.50);
}

#sp-header {border-top: solid 12px #95d2ef; 
            border-bottom: solid 4px #95d2ef;
            height: 80px;
            box-shadow: 0 0px ;}

#sp-footer .container-inner {padding: 0px; }


/* Menu desktop */
.sp-megamenu-parent > li > a {
    position: relative;
    transition: color 0.25s ease;
}

/* Hover */
.sp-megamenu-parent > li > a:hover {
    color: #95d2ef !important;
}

/* Linea animata */
.sp-megamenu-parent > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 2px;
    background-color: #95d2ef;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

/* Linea in hover */
.sp-megamenu-parent > li > a:hover::after {
    width: 70%;
}

/* Voce della pagina attiva */
.sp-megamenu-parent > li.active > a {
    color: #95d2ef !important;
}

.sp-megamenu-parent > li.active > a::after {
    width: 70%;
}