html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Suisse Int'l", sans-serif;
    margin: 0;
    padding: 90px 0 140px;
    background-color: #000;
    color: black;
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

img,
picture,
svg,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

.video-background {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: 1s opacity;
}

.container {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Classi GSAP generiche per prevenire sfarfallii in tutte le pagine */

/* Responsive main.css */
* { box-sizing: border-box; }
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }
}
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    body {
        padding-top: 120px;
        padding-bottom: 140px;
    }
}

/* Fix FOUC GSAP Info Page */
.info-left,
.text-content p,
.competence-col {
    opacity: 0;
}
