        /* @font-face {
            font-family: Futura;
            src: url('/assets/futura-sdt.otf') format("opentype");
            font-weight: normal;
        } */

.hamburger {
    display: none !important;
}
nav {
    display: none !important;
}
.footer-sections {
    display: none !important;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/montserrat.woff2') format('woff2'); /* Percorso al file */

    font-style: normal;
    font-display: swap; /* Opzionale: comportamento di caricamento del font */
  }

h1, h2, h3, b {
  font-family: 'Montserrat';
  font-weight:bolder !important;
}

* {
    font-family: "Montserrat";
    font-optical-sizing: auto;

    font-style: normal;
  }

        * {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Futura', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(135deg, #d4af37, #f4e5b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;

        }

        nav {
            display: flex;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #d4af37, #f4e5b8);
            transition: width 0.3s;
        }

        nav a:hover:after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #heroVideo {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 1;
        }

        .hero-logo {
            width: 150px;
            position: absolute;
            top: 30px;
            left: 15%;
            animation: fadeInUp 1s ease;
        }

        .hero-menu {
            min-width: 35px;
            position: absolute;
            top: 65px;
            left: 85%;
            animation: fadeInUp 1s ease;
        }

        .hero-content {
            position: absolute;
            z-index: 3;
            top: 5%;
            width: 100%;
            padding: 0 20px;

        }

        .hero-content h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease;
        }

        .hero-content .tagline {
            font-size: 24px;
            margin-bottom: 15px;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-content .description {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Content Sections */
        .content-section {
            /* grid-template-columns: 2fr 1fr; */
            padding: 100px 0px;
            display: grid;
            gap: 80px;
            align-items: center;
            width: 100%;
            margin: 0 auto;
        }
.tagline{
    font-size: 3em;
    font-weight: 600;
}
.content-section h2 b{
    font-weight: 900;
}
.content-left{
    width: 100%;
    text-align: center;
}
        .content-section-evolve {
            background-color: #48c7c4;
            color:  #153740;

        }
        .content-section-comingsoon{
            color:  #153740;
            font-weight: 300;
            font-size: 2em;
        }
        .content-section-evolve .content-left {
            /* border-right: 1px solid #cfc1aa; */
        }
        .content-section-access .content-left {
            /* border-right: 1px solid #2f6969; */
        }

.content-section-access {
    background-color: #cfc1aa;
    color: #2f6969;
}
.content-section-fullvideo > div{
    width: 100%;
}
.content-section-fullvideo{
    margin: 0;
    padding: 0;
}
/* VIMEO */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; overflow: hidden;
    max-width: 100%; height: auto;
     min-height: 98%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;

}
        /* Footer */
        footer {
            background: #48c7c4;
            color: white;
            padding: 60px 50px 30px;
        }
.footer-logo{
    width: 300px;
}
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-section p,
        .footer-section a {
            color: #fff;
            text-decoration: none;
            line-height: 2;
            display: block;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #d4af37;
        }

        .footer-bottom {
            text-align: center;
            font-size: smaller;
            padding-top: 30px;
            border-top: 1px solid #fff;
            color: #fff;
        }
.footer-privacy{
    visibility: hidden;
    vertical-align: middle;
    text-align: center;
    /* padding-top: 25%; */
}
        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            nav {
                gap: 20px;
                font-size: 14px;
            }

            .hero-content h1 {
                font-size: 40px;
            }

            .hero-content .tagline {
                font-size: 18px;
            }

            .hero-content .description {
                font-size: 16px;
            }



            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
.company-contact{
    font-weight: bold;
    font-size: smaller;
}