* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
}

.full-screen {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.logo {
    position: relative;
    width: 60%;
    margin: 0 auto;
  text-align: center;    
}

.logo img {
    position: relative;
    width: 100%;
}

.testo {
  font-size: 26px;
  font-weight: 400;
  padding: 50px 20px;
  text-align: justify;
}

.footer {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 0px 40px;
}

.footer img {
    width: auto;
    height: 50px;
}

.partitaIva {
    position: fixed;
    top: 40px;
    right: 10px;
    height: 40%;
}

.partitaIva img {
    height: 100%;
}
.footer .col-4 {
    width: 24%;
    text-align: center;
    display: inline-block;
}

.rigaPartitaiva {
    display: none;
    text-align: center;
}

a.linkCampeol:link,
a.linkCampeol:visited {
    color: #3db204;
    font-weight: 600;
    text-decoration: none;
}

a.linkCampeol:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .footer img {
        height: 30px;
    }
}

@media (max-width: 800px) {
    .partitaIva {
        display: none;
    }
    .footer img {
        height: 50px;
    }

    .footer .col-4 {
        width: 100%;
        display: block;
        text-align: left;
    }

    .rigaPartitaiva {
        display: block;
    }

    .rigaPartitaiva img {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100%;
    }

    .testo {
        font-size: 16px;
        padding: 30px 20px;
    }

    .footer img {
        height: 30px;
    }

    .rigaPartitaiva img {
        height: 9px;
    }
}
