@font-face { font-family: Roboto; src: url('roboto-Italic.ttf') format('ttf supports variations'); font-weight: 300 700; font-display: swap;font-style: italic;} 
#header {font-family: 'Roboto', sans-serif; font-size: 18px;}
.nav-link {color: black !important;}
.nav-link:hover{color:#94d600 !important; transition:0.5s; }
.nav-special {color:#94d600 !important;} .nav-special:hover{color:#ffffff !important; transition:0.5s;}
.nav-item {margin: 0px 5px;}
.offcanvas-body {text-align: right;}
.offcanvas {width:200px !important; border-left: 1px solid #94d600 !important;}
.centrato {text-align: center;}
.navbar-brand {padding-left:5vw;}
.navbar-toggler {background-color:rgba(255,255,255,0.75); margin-right:5vw;}
.last {padding-right: 50px;}
@media (max-width:767px){.navbar-light {transition:1s;} .navbar-nav{text-align:right;}}
.navbar-toggler:focus {
    border: 1 !important;
    box-shadow: none !important; 
}
.caul-top {
  background-color: rgba(255,255,255,1);
  border-bottom: 4px solid white;
  box-shadow: 0 0 8px #ffffff;
}

	:root {
            --caul-green: #81bc00;
            --caul-green2: #94d600;
            --caul-dark-green: #4a7c2a;
            --caul-black: #1a1a1a;
            --caul-gray: #666;
            --caul-light-gray: #f8f9fa;
            --caul-white: #ffffff;
	    --caul-greycyan: #c5d1cd;
	    --caul-dgcyan: #74867f;
        }

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

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--caul-black);
            background: var(--caul-white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

	.caul-span {
	    font-weight:700;
	}

	/* Products Section */
        .products-section {
            padding: 150px 0 0 0;
        }

        .products-header {
            text-align: left;
            margin-bottom: 100px;
        }

        .products-header h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            color: var(--caul-green);
            margin-bottom: 30px;
        }

	.products-header p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--caul-gray);
            margin-bottom: 30px;
        }

	.prodotti-intro {
            padding: 150px 0 0 0;
            background: var(--caul-light-white);
	    margin-bottom: 30px;
	    padding-bottom: 80px;
        }
	
	.intro-header2 {
            text-align: center;
            margin: 0 auto;
        }

	.intro-header2 h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            color: var(--caul-black);
            margin-bottom: 30px;
        }

	.intro-header2 p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--caul-gray);
            margin-bottom: 30px;
        }

	.intro-header2 h3 {
	    font-size: 2.5rem;
            font-weight: 700;
            color: var(--caul-black);
            margin-bottom: 30px;
	}

	.intro-header2 ul {list-style-type: none; display:inline-block;}

	.intro-header2 li {
            font-size: 1.2rem;
            color: var(--caul-gray);
            margin-bottom: 8px;
            position: relative;
	    text-align:left;
        }

        .intro-header2 li:before {
            content: '•';
            color: var(--caul-green);
            position: relative;
            left: 0;
            font-weight: bold;
	    padding-right:20px;
	    font-size: 1.8rem;
        }

	 .intro-title {
     	    font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: bold;
            color: var(--caul-black);
            margin-bottom: 50px;
        }
        
        .intro-description {
            font-size: 1.1rem;
            color: var(--caul-gray);
            line-height: 1.6;
	    margin-bottom:50px;
        }

	.caul-col-lh {text-align:right;}
	.caul-col-rh {text-align:left;}
	.caul-col {padding:8px !important;}

	.cards-container {
  	    display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
	}

	.product-card {
            background: white;
            border: 0;
            overflow: hidden;
            cursor: pointer;
            position: relative;
	    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
	}

	.product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	}

	.card-header {
            padding: 25px 25px 15px;
            text-align: center;
            background: white;
	}

	.card-title {
            font-family: 'Roboto', sans-serif;
	    font-size: 1.3rem;
            font-weight: 500;
            color: var(--caul-black);
            line-height: 1.3;
            margin-bottom: 0;
	    padding-bottom: 8px;text-align: center;
	}

	.card-image-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            margin: 0;
	}

	.card-image {
            width: 100%;
            height: 100%;
            position: relative;
            transition: transform 0.6s ease;
	}

	.product-card:hover .card-image {
            transform: scale(1.05);
	}
	.card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block; border-radius: 0;
	}

        /* Responsive */
        @media (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }

            .hero-content,
	    .hero-content2,
            .story-grid, .overlay-content,
            .green-content, .white-content, .grey-content, .top-video-content,
            .partners-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .timeline-header {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-year {
                display: none;
            }

            .timeline-item {
                flex-direction: column !important;
            }

            .timeline-content {
                width: 98%;
                margin-left: 30px;
            }

            .timeline-line {
                left: 15px;
            }

            .timeline-dot {
                left: 15px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
	    
            .features-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
	     .features-grid2 {
                grid-template-columns: 1fr;
                gap: 40px;
            }

           }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .story-sidebar {
                position: static;
                margin-top: 60px;
            }

            .timeline-container {
                margin-left: 0;
            }

            .timeline-content {
                margin-left: 40px;
            }
	
	    .content-wrapper {
                grid-template-columns: 1fr;
                gap: 0;
                padding: 0;
                min-height: auto;
            }

            .text-content {
                padding: 40px 20px;
                text-align: left;
            }
            
            .text-content h2 {
                font-size: 2rem;
            }
            
            .text-content h3 {
                font-size: 1.2rem;
            }
            
            .middle3 {
                min-height: auto;
            }

	    .slider-container {
                height: 500px;
            }

	    .top-video {
                height: 60vh;
                min-height: 450px;
            }
	    .overlay-content {
                padding: 0 20px;
            }
        }

        /* Scroll animations */
        .parallax {
            transform: translateY(0);
            transition: transform 0.1s ease-out;
        }
	/* MEDIA QUERY per tablet */
	@media screen and (max-width: 992px) {
		.cards-container {
		grid-template-columns: repeat(2, 1fr); }
	}

	/* MEDIA QUERY per mobile */
	@media screen and (max-width: 600px) {
		.cards-container {
		grid-template-columns: 1fr; }
	}

	/* Scroll animations */
	.parallax {
		transform: translateY(0);
		transition: transform 0.1s ease-out;
	}