       :root {
            --primary-gray: #ebebeb;
            --secondary-gray: #666666;
            --light-orange: #e8c400;
            --black: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--primary-gray);
            overflow-x: hidden;
        }

        /* Header */
        .header-top {
            background: linear-gradient(135deg, #ffffff 0%, var(--primary-gray) 100%);
            color: white;
            padding: 0px 0;
            text-align: center;
            position: relative;
        }

        .header-top h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .header-top p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Sticky Navigation */
        .navbar-sticky {
            position: fixed;
            top: -100px;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: top 0.3s ease-in-out;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .navbar-sticky.show {
            top: 0;
        }

        .navbar-sticky .navbar-brand {
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .navbar-sticky .nav-link {
            color: rgba(255, 255, 255, 0.8);
            padding: 15px 20px;
            transition: all 0.3s;
            font-weight: 500;
        }

        .navbar-sticky .nav-link:hover {
            color: var(--light-orange);
            transform: translateY(-2px);
        }		
		
/* Dropdown Menu */
.navbar-sticky .nav-item.dropdown {
    position: relative;
}

.navbar-sticky .nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.navbar-sticky .dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.navbar-sticky .dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
}

.navbar-sticky .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-sticky .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-sticky .dropdown-item:last-child {
    border-bottom: none;
}

.navbar-sticky .dropdown-item:hover {
    background: var(--light-orange);
    color: white;
    padding-left: 25px;
}

/* Mobile dropdown */
@media (max-width: 991px) {
    .navbar-sticky .dropdown-menu {
        position: static;
        background: rgba(0, 0, 0, 0.8);
        margin-left: 20px;
    }
    
    .navbar-sticky .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .navbar-sticky .nav-link {
        cursor: pointer;
    }
	
	.navbar-sticky .nav-link i {
        transition: transform 0.3s;
    }
}

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--black) 0%, var(--secondary-gray) 100%);
            color: white;
            padding: 60px 0 30px;
            position: relative;
            margin-top: 100px;
        }

        .footer h5 {
            color: var(--light-orange);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer ul li a:hover {
            color: var(--light-orange);
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--light-orange);
            transform: translateY(-5px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
		
		.foot{color:#ccc;text-decoration:none;}
		.foot:hover{color:#fff;text-decoration:underline;}
		
/* Footer Dropdown */
.footer .footer-dropdown {
    position: relative;
}

.footer .footer-dropdown-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer .footer-dropdown-link i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.footer .footer-submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    display: none;
}

.footer .footer-submenu li {
    margin-bottom: 8px;
}

.footer .footer-submenu a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer .footer-submenu a:hover {
    color: var(--light-orange);
    padding-left: 5px;
}

/* Desktop hover */
@media (min-width: 992px) {
    .footer .footer-dropdown:hover .footer-submenu {
        display: block;
    }
    
    .footer .footer-dropdown:hover .footer-dropdown-link i {
        transform: rotate(180deg);
    }
}		
		
        /* Page Header Image */
        .page-header-image {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .page-header-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .page-header-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .page-header-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
        }

        .page-header-title h1 {
            font-size: 4rem;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            margin-bottom: 15px;
        }

        .page-header-title p {
            font-size: 1.5rem;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }		

        .page-header-border {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            background: white;
			width:100%;
			max-width:1200px;
			height:25px;
        }
		
		.page-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--light-orange);
            margin-bottom: 20px;
            line-height: 1.2;
        }
		
		.page-subtitle {
            font-size: 22px;
            color: #666;
            line-height: 1.6;
        }
		
		.page-subtitle-sub {
            font-size: 18px;
            color: #333;
            margin-bottom: 50px;
            line-height: 1.3;
        }		
		
        .btn-custom {
            background: var(--light-orange);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
        }

        .btn-custom:hover {
            background: #FF7744;
            color: white;
            transform: scale(1.05);
        }

.boxbianco {
    background: white;
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

        .modal-header{background:#f3f3f3;}	
        .modal-title{color:#e8c400;}		
		.modal-corpo{padding:30px;}
		.modal-label{color:#666;}
		
.contr{border:1px solid red;}
.sz10{font-size:10px;}
.sz11{font-size:11px;}
.sz12{font-size:12px;}
.sz13{font-size:13px;}
.sz14{font-size:14px;}
.sz15{font-size:15px;}
.sz16{font-size:16px;}
.sz18{font-size:17px;}
.sz20{font-size:20px!important;}
.sz22{font-size:22px;}
.sz24{font-size:24px;}
.sz25{font-size:25px;}
.sz27{font-size:27px;}
.sz30{font-size:30px;}
.sz35{font-size:35px;}
.sz40{font-size:40px;}
.sz45{font-size:45px;}
.sz50{font-size:50px;}
.sz55{font-size:55px;}
.sz60{font-size:60px;}	

 /*colori background */
.bgcol0{background-color:#C51015;} /*rosso scuro */
.bgcol1{background-color:#ff6600;} /*arancio */
.bgcol2{background-color:#318CE7;} /*azzurro */
.bgcol3{background-color:#000080;} /*blu */
.bgcol4{background-color:#009900;} /*verde */
.bgcol5{background-color:#4169E1;} /* azzurro chiaro */
.bgcol6{background-color:#ff0000;} /*rosso */
.bgcol7{background-color:#666;}
.bgcol8{background-color:#fff;}
.bgcol9{background-color:#000;}
.bgcol10{background-color:#E0218A;}
.bgcol11{background-color:#007700;} /*verde scuro*/
.bgcol12{background-color:#cc0000;} /*rossoe scuro*/
.bgcol13{background-color:#0D98BA;} /*bluverde*/
.bgcol14{background-color:#ebebeb;} /*grigio chiaro*/
.bgcol15{background-color:#1F8678;} /*verde*/
.bgcol16{background-color:#E7CB5A;} /*senape*/

 /*colori */
.colsoc1{color:#e8c400;}
.col0{color:#C51015;} /*rosso scuro */
.col1{color:#ff6600;} /*arancio */
.col2{color:#318CE7;} /*azzurro */
.col3{color:#000080;} /*blu */
.col4{color:#009900;} /*verde */
.col5{color:#4169E1;} /* azzurro chiaro */
.col6{color:#ff0000;} /*rosso */
.col7{color:#666;}
.col8{color:#fff;}
.col9{color:#000;}
.col10{color:#E0218A;}
.col11{color:#007700;} /*verde scuro*/
.col12{color:#cc0000;} /*rossoe scuro*/
.col13{color:#0D98BA;} /*bluverde*/
.col14{color:#ebebeb;} /*grigio chiaro*/
.col15{color:#1F8678;} /*verde*/

 .movefast{
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
 } 

@media (max-width: 768px) {
    .header-top h1 {font-size: 2rem;}
}        
    
@media (max-width: 600px) {
    .oppure {display:none;}
}  	
	