.fade-in 
{
    opacity: 0;
    transition: opacity 2s;
}
  
.fade-in.show 
{
    opacity: 1;
}
  
/* FONT */

@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,300;1,300&family=Libre+Baskerville&display=swap');
/* BOTTONE */

#floating-button 
{
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 60px;
    height: 60px;
    background-color: #2c3a1a;
    border-radius: 50%;
    border: 2px solid #6b8648;
    z-index: 9999;
    transition: all 0.3s ease;
}

#floating-button i 
{
    font-size: 24px;
    color: #fff;
    line-height: 60px;
    display:flex;
    justify-content: center;
    align-items: center;
}
  
#floating-button:hover
{
    cursor: pointer;
    width: 120px;
    border-radius: 20px;
}

#floating-button:hover .icon
{
    display: none;
}

#floating-button:hover .link
{
    display: flex;
    justify-content: center;
    align-items: center;
}

#floating-button .link 
{
    display: none;
    color: #fff;
    font-size: 1.2rem;
    line-height: 60px;
}

/* CONFIGURAZIONE CSS */

html
{
    overflow-x: hidden;
}

.container-fluid
{
    background-color:#d3f3a9;
    margin:0px;
    padding:0px;
    font-family: 'Libre Baskerville', serif;
}

.logo
{
    width: 80px;
}    

header
{
    width: 100%;
    padding: 0.9rem 0;
}

header nav
{
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul
{
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0px;
    padding-left: 0%;
}

header a
{
    text-decoration: none;
    color: #2c3a1a;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.3rem;
}

header a:hover
{
    color:#6b8648;
}

.line
{
    border-bottom: 2px solid #2c3a1a;
}

main
{
    height: 80vh;
    margin-bottom: 20vh;
}

.title 
{
    text-align: center;
    text-transform: uppercase;
    color: white;
    background-color: #6b8648;
    border-bottom: 3px solid #2c3a1a;
    border-top: 3px solid #2c3a1a;
    margin-top: 10%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 15px #1b2014;
}
  
.title h1 
{
    font-size: 6rem;
}

.contenitore
{
    color:white;
    background-color: #2c3a1a;
    margin: 0px;
    border-top: 4px solid #1b2014;
    border-bottom: 4px solid #1b2014; 
    height: 100%;
    width: 100%;
    text-align: center;
}

.titolo
{
    padding-top:3%;
    margin-bottom: 3%;
}

.titolo b
{
    border-bottom: 2px solid #6b8648;
    font-size: 4rem;
}

.descrizione
{
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-size: 1.6rem;
}

.destitle
{
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
    padding: 10%;
    margin: 0px;
}

.destitle i
{
    line-height: 2;
}

.video
{
    height: 50vh;
    width: 50%;
    border: 8px solid #6b8648;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 10%;
}

.divide
{   
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sponsor
{
    width: 100%;
    height: auto;
}


.footer
{
    color:white;
    background-color: #2c3a1a;
    border-top: 4px solid#1b2014;
}

.footer h1
{
    text-align: center;
    border-bottom:2px solid #6b8648;
    padding-top:3%;
    padding-bottom: 3%;
}

.info
{
    display: flex;
    align-items:center;
    justify-content: center;
    padding-bottom: 5%;
}

#contatti
{
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0;
}

#riferimenti
{
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
    margin-bottom: 0;
}

.footer a
{
    color:#8bbe47;
}

/* Responsive */

@media screen and (max-width: 320px)
{

    .logo
    {
        width: 80px;
    }



    .title 
    {
        text-align: center;
        text-transform: uppercase;
        color: white;
        background-color: #6b8648;
        border-bottom: 3px solid #2c3a1a;
        border-top: 3px solid #2c3a1a;
        margin-top: 10%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 10px 10px 15px #1b2014;
    }
    
    .title h1 
    {
        font-size: 3rem;
    }

    .titolo b
    {
        border-bottom: 2px solid #6b8648;
        font-size: 2.5rem;
    }

    .descrizione
    {
        padding-bottom: 5%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 1.2rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 1.3rem;
        text-align: center;
        padding: 10%;
        margin: 0px;
    }

    .destitle i
    {
        line-height: 1.5;
    }

    .video
    {
        height: 50vh;
        width: 100%;
        border: 8px solid #6b8648;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
        margin-bottom: 10%;
    }

    .divide
    {
        height: 30vh;
    }

    .footer
    {
        color:white;
        background-color: #2c3a1a;
        border-top: 4px solid#1b2014;
    }

    .footer h1
    {
        text-align: center;
        font-size: 1.5rem;
        border-bottom:2px solid #6b8648;
        padding: 3%;
    }

    #contatti
    {
        font-size: 1rem;
        text-align: center;
        padding: 5%;
    }

    #riferimenti
    {
        font-size: 1rem;
        text-align: center;
        padding-top: 3%;
        padding-bottom: 3%;
        margin-left: 5%;
        margin-right: 5%;
        border-bottom: 1px solid #fff;
    }
}

@media screen and (min-width: 321px) and (max-width: 375px)
{

    .logo
    {
        width: 80px;
    }



    .title 
    {
        text-align: center;
        text-transform: uppercase;
        color: white;
        background-color: #6b8648;
        border-bottom: 3px solid #2c3a1a;
        border-top: 3px solid #2c3a1a;
        margin-top: 10%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 10px 10px 15px #1b2014;
    }
    
    .title h1 
    {
        font-size: 3rem;
    }

    .titolo b
    {
        border-bottom: 2px solid #6b8648;
        font-size: 3rem;
    }

    .descrizione
    {
        padding-bottom: 5%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 1.3rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 1.5rem;
        text-align: center;
        padding: 10%;
        margin: 0px;
    }

    .destitle i
    {
        line-height: 1.5;
    }

    .video
    {
        height: 50vh;
        width: 100%;
        border: 8px solid #6b8648;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
        margin-bottom: 10%;
    }

    .divide
    {
        height: 30vh;
    }

    .footer
    {
        color:white;
        background-color: #2c3a1a;
        border-top: 4px solid#1b2014;
    }

    .footer h1
    {
        text-align: center;
        font-size: 1.5rem;
        border-bottom:2px solid #6b8648;
        padding: 3%;
    }

    #contatti
    {
        font-size: 1.2rem;
        text-align: center;
        padding: 5%;
    }

    #riferimenti
    {
        font-size: 1.2rem;
        text-align: center;
        padding-top: 3%;
        padding-bottom: 3%;
        margin-left: 5%;
        margin-right: 5%;
        border-bottom: 1px solid #fff;
    }
}

@media screen and (min-width: 376px) and (max-width: 425px)
{

    .logo
    {
        width: 80px;
    }



    .title 
    {
        text-align: center;
        text-transform: uppercase;
        color: white;
        background-color: #6b8648;
        border-bottom: 3px solid #2c3a1a;
        border-top: 3px solid #2c3a1a;
        margin-top: 10%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 10px 10px 15px #1b2014;
    }
    
    .title h1 
    {
        font-size: 3.5rem;
    }

    .titolo b
    {
        border-bottom: 2px solid #6b8648;
        font-size: 3.5rem;
    }

    .descrizione
    {
        padding-bottom: 5%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 1.4rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 1.5rem;
        text-align: center;
        padding: 10%;
        margin: 0px;
    }

    .destitle i
    {
        line-height: 1.5;
    }

    .video
    {
        height: 50vh;
        width: 100%;
        border: 8px solid #6b8648;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
        margin-bottom: 10%;
    }

    .divide
    {
        height: 30vh;
    }

    .footer
    {
        color:white;
        background-color: #2c3a1a;
        border-top: 4px solid#1b2014;
    }

    .footer h1
    {
        text-align: center;
        font-size: 1.7rem;
        border-bottom:2px solid #6b8648;
        padding: 3%;
    }

    #contatti
    {
        font-size: 1.2rem;
        text-align: center;
        padding: 5%;
    }

    #riferimenti
    {
        font-size: 1.2rem;
        text-align: center;
        padding-top: 3%;
        padding-bottom: 3%;
        margin-left: 5%;
        margin-right: 5%;
        border-bottom: 1px solid #fff;
    }
}

@media screen and (min-width: 426px) and (max-width: 768px)
{

    #floating-button 
    {
        position: fixed;
        bottom: 2%;
        right: 2%;
        width: 80px;
        height: 80px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        z-index: 9999;
        transition: all 0.3s ease;
    }

    #floating-button i 
    {
        font-size: 2em;
        color: #fff;
        line-height: 80px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

    #floating-button .link 
    {
        display: none;
        color: #fff;
        font-size: 1.7rem;
        line-height: 80px;
    }

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 2rem;
    }

    .logo
    {
        width: 90px;
    }

    .title 
    {
        text-align: center;
        text-transform: uppercase;
        color: white;
        background-color: #6b8648;
        border-bottom: 3px solid #2c3a1a;
        border-top: 3px solid #2c3a1a;
        margin-top: 10%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 10px 10px 15px #1b2014;
    }
    
    .title h1 
    {
        font-size: 5rem;
    }

    .titolo b
    {
        border-bottom: 2px solid #6b8648;
        font-size: 5rem;
    }

    .descrizione
    {
        padding-bottom: 5%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 1.5rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 1.5rem;
        text-align: center;
        padding: 10%;
        margin: 0px;
    }

    .destitle i
    {
        line-height: 1.5;
    }

    .video
    {
        height: 50vh;
        width: 100%;
        border: 8px solid #6b8648;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
        margin-bottom: 10%;
    }

    .sponsor
    {
        width: 60%;
        height: auto;
    }


    .footer
    {
        color:white;
        background-color: #2c3a1a;
        border-top: 4px solid#1b2014;
    }

    .footer h1
    {
        text-align: center;
        font-size: 2.2rem;
        border-bottom:2px solid #6b8648;
        padding: 3%;
    }

    #contatti
    {
        font-size: 1.3rem;
        text-align: center;
        padding: 5%;
    }

    #riferimenti
    {
        font-size: 1.3rem;
        text-align: center;
        padding-top: 3%;
        padding-bottom: 3%;
        margin-left: 5%;
        margin-right: 5%;
        border-bottom: 1px solid #fff;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px)
{

    #floating-button 
    {
        position: fixed;
        bottom: 2%;
        right: 2%;
        width: 75px;
        height: 75px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        z-index: 9999;
        transition: all 0.3s ease;
    }
    
    #floating-button i 
    {
        font-size: 30px;
        color: #fff;
        line-height: 75px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

    #floating-button .link 
    {
        display: none;
        color: #fff;
        font-size: 1.5em;
        line-height: 75px;
    }

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 2rem;
    }

    .logo
    {
        width: 90px;
    }

    .title 
    {
        text-align: center;
        text-transform: uppercase;
        color: white;
        background-color: #6b8648;
        border-bottom: 3px solid #2c3a1a;
        border-top: 3px solid #2c3a1a;
        margin-top: 10%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 10px 10px 15px #1b2014;
    }
    
    .title h1 
    {
        font-size: 5.5rem;
    }

    .titolo b
    {
        border-bottom: 2px solid #6b8648;
        font-size: 5.5rem;
    }

    .descrizione
    {
        padding-bottom: 5%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 1.7rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 1.7rem;
        text-align: center;
        padding: 10%;
        margin: 0px;
    }

    .destitle i
    {
        line-height: 1.7;
    }

    .video
    {
        height: 50vh;
        width: 80%;
        border: 8px solid #6b8648;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
        margin-bottom: 10%;
    }

    .sponsor
    {
        width: 60%;
        height: auto;
    }

    .footer
    {
        color:white;
        background-color: #2c3a1a;
        border-top: 4px solid#1b2014;
    }

    .footer h1
    {
        text-align: center;
        font-size: 2.5rem;
        border-bottom:2px solid #6b8648;
        padding: 3%;
    }

    #contatti
    {
        font-size: 1.5rem;
        text-align: center;
        padding: 5%;
    }

    #riferimenti
    {
        font-size: 1.5rem;
        text-align: center;
        padding-top: 3%;
        padding-bottom: 3%;
        margin-left: 5%;
        margin-right: 5%;
        border-bottom: 1px solid #fff;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1440px)
{

    #floating-button 
    {
        position: fixed;
        bottom: 2%;
        right: 2%;
        width: 80px;
        height: 80px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        z-index: 9999;
        transition: all 0.3s ease;
    }
    
    #floating-button i 
    {
        font-size: 2rem;
        color: #fff;
        line-height: 80px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

    #floating-button .link 
    {
        display: none;
        color: #fff;
        font-size: 1.7em;
        line-height: 80px;
    }

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 2rem;
    }

    .logo
    {
        width: 90px;
    }

    .title 
    {
        text-align: center;
        text-transform: uppercase;
        color: white;
        background-color: #6b8648;
        border-bottom: 3px solid #2c3a1a;
        border-top: 3px solid #2c3a1a;
        margin-top: 10%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 10px 10px 15px #1b2014;
    }
    
    .title h1 
    {
        font-size: 5.5rem;
    }

    .titolo b
    {
        border-bottom: 2px solid #6b8648;
        font-size: 5.5rem;
    }

    .descrizione
    {
        padding-bottom: 5%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 2rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 2rem;
        text-align: center;
        padding: 10%;
        margin: 0px;
    }

    .destitle i
    {
        line-height: 1.7;
    }

    .video
    {
        height: 50vh;
        width: 50%;
        border: 8px solid #6b8648;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
        margin-bottom: 10%;
    }

    .sponsor
    {
        width: 50%;
        height: auto;
    }

    .footer
    {
        color:white;
        background-color: #2c3a1a;
        border-top: 4px solid#1b2014;
    }

    .footer h1
    {
        text-align: center;
        font-size: 2.5rem;
        border-bottom:2px solid #6b8648;
        padding: 3%;
    }

    #contatti
    {
        font-size: 1.7rem;
        text-align: center;
        padding: 5%;
    }

    #riferimenti
    {
        font-size: 1.7rem;
        text-align: center;
        padding-top: 3%;
        padding-bottom: 3%;
        margin-left: 5%;
        margin-right: 5%;
        border-bottom: 1px solid #fff;
    }
}

@media screen and (min-width: 1441px) and (max-width: 2560px)
{

    #floating-button 
    {
        position: fixed;
        bottom: 1%;
        right: 1%;
        width: 80px;
        height: 80px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        z-index: 9999;
        transition: all 0.3s ease;
    }
    
    #floating-button i 
    {
        font-size: 2rem;
        color: #fff;
        line-height: 80px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

    #floating-button .link 
    {
        display: none;
        color: #fff;
        font-size: 1.7em;
        line-height: 80px;
    }

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 2rem;
    }

    .logo
    {
        width: 90px;
    }

    .title 
    {
        text-align: center;
        text-transform: uppercase;
        color: white;
        background-color: #6b8648;
        border-bottom: 3px solid #2c3a1a;
        border-top: 3px solid #2c3a1a;
        margin-top: 10%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 10px 10px 15px #1b2014;
    }
    
    .title h1 
    {
        font-size: 8rem;
    }

    .titolo b
    {
        border-bottom: 2px solid #6b8648;
        font-size: 6rem;
    }

    .descrizione
    {
        padding-bottom: 5%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 2rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 2rem;
        text-align: center;
        padding: 10%;
        margin: 0px;
    }

    .destitle i
    {
        line-height: 1.8;
    }

    .video
    {
        height: 60vh;
        width: 50%;
        border: 8px solid #6b8648;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
        margin-bottom: 10%;
    }

    .sponsor
    {
        width: 40%;
        height: auto;
    }

    .footer
    {
        color:white;
        background-color: #2c3a1a;
        border-top: 4px solid#1b2014;
    }

    .footer h1
    {
        text-align: center;
        font-size: 4rem;
        border-bottom:2px solid #6b8648;
        padding: 3%;
    }

    #contatti
    {
        font-size: 1.9rem;
        text-align: center;
        padding: 5%;
    }

    #riferimenti
    {
        font-size: 1.9rem;
        text-align: center;
        padding-top: 3%;
        padding-bottom: 3%;
        margin-left: 5%;
        margin-right: 5%;
        border-bottom: 1px solid #fff;
    }
}

@media screen and (min-width: 2561px)
{

    #floating-button 
    {
        position: fixed;
        bottom: 1%;
        right: 1%;
        width: 90px;
        height: 90px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        z-index: 9999;
        transition: all 0.3s ease;
    }
    
    #floating-button i 
    {
        font-size: 2rem;
        color: #fff;
        line-height: 90px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

    #floating-button .link 
    {
        display: none;
        color: #fff;
        font-size: 1.8em;
        line-height: 90px;
    }

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 3rem;
    }

    .logo
    {
        width: 100px;
    }

    .title 
    {
        text-align: center;
        text-transform: uppercase;
        color: white;
        background-color: #6b8648;
        border-bottom: 3px solid #2c3a1a;
        border-top: 3px solid #2c3a1a;
        margin-top: 10%;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 10px 10px 15px #1b2014;
    }
    
    .title h1 
    {
        font-size: 10rem;
    }

    .titolo b
    {
        border-bottom: 2px solid #6b8648;
        font-size: 6.5rem;
    }

    .descrizione
    {
        padding-bottom: 5%;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 3.5rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 3.5rem;
        text-align: center;
        padding: 10%;
        margin: 0px;
    }

    .destitle i
    {
        line-height: 1.8;
    }

    .video
    {
        height: 60vh;
        width: 50%;
        border: 8px solid #6b8648;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
        margin-bottom: 10%;
    }

    .sponsor
    {
        width: 40%;
        height: auto;
    }

    .footer
    {
        color:white;
        background-color: #2c3a1a;
        border-top: 4px solid#1b2014;
    }

    .footer h1
    {
        text-align: center;
        font-size: 4rem;
        border-bottom:2px solid #6b8648;
        padding: 3%;
    }

    #contatti
    {
        font-size: 2rem;
        text-align: center;
        padding: 5%;
    }

    #riferimenti
    {
        font-size: 2rem;
        text-align: center;
        padding-top: 3%;
        padding-bottom: 3%;
        margin-left: 5%;
        margin-right: 5%;
        border-bottom: 1px solid #fff;
    }
}




