/* ANIMAZIONI */

@keyframes fade-in-bottom 
{
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

.fade-in-bottom
{
    opacity: 0;
    animation: fade-in-bottom 1s ease-in-out forwards;
}

.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;
}

/* MENU */

#menu
{
    position:fixed;
    width: 60px;
    height: 60px;
    background-color: #2c3a1a;
    border-radius: 50%;
    border: 2px solid #6b8648;
    transition: all 0.3s ease;
    z-index:9999;
    top: 1%;
    left: 1%;
}

#menu i
{
    font-size: 1.5rem;
    color: #fff;
    line-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu:hover
{
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    padding: 3%;
    border-radius: 20px;
}

#menu:hover .icon
{
    display: none;
}

.menu-items 
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
}

.menu-items .link
{
    display: none;
    color: #fff;
    font-size: 1.5rem;
    border-bottom: 1px solid #6b8648;
}

#menu:hover .link 
{
    display: block;
}

/* CONFIGURAZIONE CSS */

html
{
    overflow-x: hidden;
}

.container-fluid
{
    background-color:#d3f3a9;
    margin:0px;
    padding:0px;
    font-family: 'Libre Baskerville', serif;
}

.logo
{
    width: 80px;
    margin-left: 40%;
}    

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;
}

header a
{
    text-decoration: none;
    color: #2c3a1a;
    padding: 0 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.3rem;
}

header a:hover
{
    color:#6b8648;
}

.line
{
    border-bottom: 2px solid #2c3a1a;
}

main
{
    height: 100vh;
}

.title 
{
    text-align: center;
    text-transform: uppercase;
    color: white;
    background-color: #6b8648;
    border-bottom: 3px solid #2c3a1a;
    border-top: 3px solid #2c3a1a;
    height: 30vh;
    margin-top: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 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;  
}

.anno
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.anno h1
{
    display: flex;
    align-items: center;
    justify-content: center;    
    padding-top: 2%;
    font-weight: 700;
    font-size: 4rem;
}

.anno i 
{
    border: 2px solid white;
    box-shadow: 5px 10px 10px #1b2014;
}

.history
{
    padding-top:2%;
}

.destitle
{
    font-weight: 500;
    font-size: 3rem;
    text-align: center;
    border-bottom: 2px solid #6b8648;
}

.content
{
    font-size: 1.2rem;
    padding-top: 6%;
    padding-bottom: 3%;
}

.divide
{   
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.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;
    margin: 0px;
    padding-top:3%;
    padding-bottom: 3%;
}

.info
{
    display: flex;
    align-items:center;
    justify-content: center;
}

.col-xl-4
{
    padding-left: 0%;
    padding-right: 0%;
}

.col-md-12
{
    padding-left: 0%;
    padding-right: 0%;
}

#contatti
{
    font-size: 1.5rem;
    text-align: center;
    padding: 3%;
    margin-bottom: 0;
}

#riferimenti
{
    font-size: 1.5rem;
    text-align: center;
    padding: 3%;
    border-bottom: 2px solid #6b8648;
}

.footer a
{
    color:#8bbe47;
}

@media screen and (max-width:320px) 
{
    #floating-button 
    {
        position: fixed;
        bottom: 5%;
        right: 5%;
        width: 60px;
        height: 60px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        z-index: 9999;
        transition: all 0.3s ease;
    }

    .logo
    {
        width: 70px;
        margin-left: 10%;
    }    

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        padding-right:0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 1.3rem;
    }
    
    header ul
    {
        padding-left:0;
    }

    .title h1 
    {
        font-size: 2.2rem;
    }

    .anno h1
    {
        display: flex;
        align-items: center;
        justify-content: center;    
        padding-top: 2%;
        font-weight: 700;
        font-size: 3.5rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 2.5rem;
        text-align: center;
        border-bottom: 2px solid #6b8648;
    }

    .history
    {
        padding-top:10%;
        margin: 0;
    }

    .col-xl-4
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .col-md-12
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .content
    {
        font-size: 1.2rem;
        padding-bottom: 3%;
    }

    .content p
    {
        padding-right: 10%;
    }

    .footer h1
    {
        text-align: center;
        font-size: 1.2rem;
        border-bottom:2px solid #6b8648;
        padding-top:3%;
        padding-bottom: 3%;
    }

    #contatti
    {
        font-size: 1rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 3%;    
    }

    #riferimenti
    {
        font-size: 1rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 3%;
        margin: 0%;
        padding-bottom: 5%;
    }

    

}

@media screen and (min-width: 321px) and (max-width: 375px)
{
    #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;
    }

    .logo
    {
        width: 70px;
        margin-left: 25%;
    }    

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        padding-right:0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 1.3rem;
    }
    
    header ul
    {
        padding-left:0;
    }

    .title h1 
    {
        font-size: 2.4rem;
    }

    .anno h1
    {
        display: flex;
        align-items: center;
        justify-content: center;    
        padding-top: 2%;
        font-weight: 700;
        font-size: 3.5rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 3rem;
        text-align: center;
        border-bottom: 2px solid #6b8648;
    }

    .history
    {
        padding-top:10%;
        margin: 0;
    }

    .col-xl-4
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .col-md-12
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .content
    {
        font-size: 1.2rem;
        padding-bottom: 3%;
    }

    .content p
    {
        padding-right: 10%;
    }

    .footer h1
    {
        text-align: center;
        font-size: 1.6rem;
        border-bottom:2px solid #6b8648;
        padding-top:3%;
        padding-bottom: 3%;
    }

    #contatti
    {
        font-size: 1.1rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 3%;    
    }

    #riferimenti
    {
        font-size: 1.1rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 3%;
        margin: 0%;
        padding-bottom: 5%;
    }

}

@media screen and (min-width: 376px) and (max-width: 425px)
{
    #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;
    }

    .logo
    {
        width: 75px;
        margin-left: 25%;
    }    

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        padding-right:0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 1.4rem;
    }
    
    header ul
    {
        padding-left:0;
    }

    .title h1 
    {
        font-size:2.8rem;
    }

    .anno h1
    {
        display: flex;
        align-items: center;
        justify-content: center;    
        padding-top: 2%;
        font-weight: 700;
        font-size: 3.8rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 3rem;
        text-align: center;
        border-bottom: 2px solid #6b8648;
    }

    .history
    {
        padding-top:10%;
        margin: 0;
    }

    .col-xl-4
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .col-md-12
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .content
    {
        font-size: 1.2rem;
        padding-bottom: 3%;
    }

    .content p
    {
        padding-right: 10%;
    }

    .footer h1
    {
        text-align: center;
        font-size: 1.6rem;
        border-bottom:2px solid #6b8648;
        padding-top:3%;
        padding-bottom: 3%;
    }

    #contatti
    {
        font-size: 1.1rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 3%;    
    }

    #riferimenti
    {
        font-size: 1.1rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 3%;
        margin: 0%;
        padding-bottom: 5%;
    }

}

@media screen and (min-width: 426px) and (max-width: 768px)
{
    #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;
    }

    #menu
    {
        position:fixed;
        width: 75px;
        height: 75px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        transition: all 0.3s ease;
        z-index:9999;
        top: 1%;
        left: 1%;
    }

    #menu i
    {
        font-size: 2rem;
        color: #fff;
        line-height: 75px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-items .link
    {
        display: none;
        color: #fff;
        font-size: 1.9rem;
        border-bottom: 1px solid #6b8648;
    }

    .logo
    {
        width: 100px;
        margin-left: 40%;
    }    

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        padding-right:0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 1.8rem;
    }
    
    header ul
    {
        padding-left:0;
    }

    .title h1 
    {
        font-size:4.5rem;
    }

    .anno h1
    {
        display: flex;
        align-items: center;
        justify-content: center;    
        padding-top: 2%;
        font-weight: 700;
        font-size: 4.5rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 4rem;
        text-align: center;
        border-bottom: 2px solid #6b8648;
    }

    .history
    {
        padding-top:10%;
        margin: 0;
    }

    .col-xl-4
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .col-md-12
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .content
    {
        font-size: 1.4rem;
        padding-bottom: 3%;
    }

    .content p
    {
        padding-right: 8%;
    }

    .sponsor
    {
        width: 60%;
        height: auto;
    }

    .footer h1
    {
        text-align: center;
        font-size: 2rem;
        border-bottom:2px solid #6b8648;
        padding-top:3%;
        padding-bottom: 3%;
    }

    #contatti
    {
        font-size: 1.5rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 3%;    
    }

    #riferimenti
    {
        font-size: 1.5rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        margin: 0%;
        padding-bottom: 5%;
    }

}

@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;
    }

    #menu
    {
        position:fixed;
        width: 75px;
        height: 75px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        transition: all 0.3s ease;
        z-index:9999;
        top: 1%;
        left: 1%;
    }

    #menu i
    {
        font-size: 2rem;
        color: #fff;
        line-height: 75px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-items .link
    {
        display: none;
        color: #fff;
        font-size: 2rem;
        border-bottom: 1px solid #6b8648;
    }

    .logo
    {
        width: 100px;
        margin-left: 40%;
    }    

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        padding-right:0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 1.8rem;
    }
    
    header ul
    {
        padding-left:0;
    }

    .title h1 
    {
        font-size:5rem;
    }

    .anno h1
    {
        display: flex;
        align-items: center;
        justify-content: center;    
        padding-top: 2%;
        font-weight: 700;
        font-size: 4.8rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 4rem;
        text-align: center;
        border-bottom: 2px solid #6b8648;
    }

    .history
    {
        padding-top:10%;
        margin: 0;
    }

    .col-xl-4
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .col-md-12
    {
        padding-left: 0%;
        padding-right: 0%;
    }

    .content
    {
        font-size: 1.3rem;
        padding-bottom: 3%;
    }

    .content p
    {
        padding-right: 8%;
    }

    .sponsor
    {
        width: 60%;
        height: auto;
    }

    .footer h1
    {
        text-align: center;
        font-size: 2rem;
        border-bottom:2px solid #6b8648;
        padding-top:3%;
        padding-bottom: 3%;
    }

    #contatti
    {
        font-size: 1.5rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 3%;    
    }

    #riferimenti
    {
        font-size: 1.5rem;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        margin: 0%;
        padding-bottom: 5%;
    }

}

@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: 2.5rem;
        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;
    }

    #menu
    {
        position:fixed;
        width: 80px;
        height: 80px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        transition: all 0.3s ease;
        z-index:9999;
        top: 1%;
        left: 1%;
    }

    #menu i
    {
        font-size: 2.5rem;
        color: #fff;
        line-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-items .link
    {
        display: none;
        color: #fff;
        font-size: 2rem;
        border-bottom: 1px solid #6b8648;
    }

    .logo
    {
        width: 110px;
        margin-left: 50%;
    }    

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        padding-right:0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 1.8rem;
    }
    
    header ul
    {
        padding-left:0;
    }

    .title h1 
    {
        font-size: 7.5rem;
    }

    .anno h1
    {
        display: flex;
        align-items: center;
        justify-content: center;    
        padding-top: 2%;
        font-weight: 700;
        font-size: 6rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 3.5rem;
        text-align: center;
        border-bottom: 2px solid #6b8648;
    }

    .history
    {
        padding-top:5%;
        margin: 0;
    }

    .col-xl-4
    {
        padding-left: 1%;
        padding-right: 1%;
    }

    .content
    {
        font-size: 1.4rem;
        padding-bottom: 3%;
    }

    .content p
    {
        padding-right: 8%;
    }

    .sponsor
    {
        width: 50%;
        height: auto;
    }

    .footer h1
    {
        text-align: center;
        font-size: 3rem;
        border-bottom:2px solid #6b8648;
        padding-top:3%;
        padding-bottom: 3%;
    }

    #contatti
    {
        font-size: 1.5rem;
        align-items: center;
        text-align: center;
        padding-bottom: 2%;
    }

    #riferimenti
    {
        font-size: 1.5rem;
        align-items: center;
        text-align: center;
        margin: 0%;
        padding-bottom: 5%;
    }

}

@media screen and (min-width: 1441px) and (max-width: 2560px)
{
    #floating-button 
    {
        position: fixed;
        bottom: 2%;
        right: 2%;
        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.5rem;
        line-height: 90px;
    }

    #menu
    {
        position:fixed;
        width: 90px;
        height: 90px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        transition: all 0.3s ease;
        z-index:9999;
        top: 1%;
        left: 1%;
    }

    #menu i
    {
        font-size: 2rem;
        color: #fff;
        line-height: 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-items .link
    {
        display: none;
        color: #fff;
        font-size: 2rem;
        border-bottom: 1px solid #6b8648;
    }

    .logo
    {
        width: 130px;
        margin-left: 50%;
    }    

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        padding-right:0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 2rem;
    }
    
    header ul
    {
        padding-left:0;
        padding-right: 5%;
    }

    .title h1 
    {
        font-size: 9rem;
    }

    .anno h1
    {
        display: flex;
        align-items: center;
        justify-content: center;    
        padding-top: 2%;
        font-weight: 700;
        font-size: 7rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 5rem;
        text-align: center;
        border-bottom: 2px solid #6b8648;
    }

    .history
    {
        padding-top:2%;
        margin: 0;
    }

    .col-xl-4
    {
        padding-left: 1%;
        padding-right: 1%;
    }

    .content
    {
        font-size: 1.4rem;
        padding-bottom: 3%;
    }

    .content p
    {
        padding-right: 8%;
    }

    .sponsor
    {
        width: 40%;
        height: auto;
    }

    .footer h1
    {
        text-align: center;
        font-size: 3rem;
        border-bottom:2px solid #6b8648;
        padding-top:3%;
        padding-bottom: 3%;
    }

    #contatti
    {
        font-size: 1.5rem;
        align-items: center;
        text-align: center;
        padding-bottom: 2%;
    }

    #riferimenti
    {
        font-size: 1.5rem;
        align-items: center;
        text-align: center;
        margin: 0%;
        padding-bottom: 5%;
    }

}

@media screen and (min-width: 2561px)
{
    #floating-button 
    {
        position: fixed;
        bottom: 2%;
        right: 2%;
        width: 100px;
        height: 100px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        z-index: 9999;
        transition: all 0.3s ease;
    }
    
    #floating-button i 
    {
        font-size: 3rem;
        color: #fff;
        line-height: 100px;
        display:flex;
        justify-content: center;
        align-items: center;
    }

    #floating-button .link 
    {
        display: none;
        color: #fff;
        font-size: 2rem;
        line-height: 100px;
    }

    #menu
    {
        position:fixed;
        width: 100px;
        height: 100px;
        background-color: #2c3a1a;
        border-radius: 50%;
        border: 2px solid #6b8648;
        transition: all 0.3s ease;
        z-index:9999;
        top: 1%;
        left: 1%;
    }

    #menu i
    {
        font-size: 3rem;
        color: #fff;
        line-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-items .link
    {
        display: none;
        color: #fff;
        font-size: 3rem;
        border-bottom: 1px solid #6b8648;
    }

    .logo
    {
        width: 160px;
        margin-left: 50%;
    }    

    header a
    {
        text-decoration: none;
        color: #2c3a1a;
        padding-right:0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 3rem;
    }
    
    header ul
    {
        padding-left:0;
        padding-right: 5%;
    }

    .title h1 
    {
        font-size: 10rem;
    }

    .anno h1
    {
        display: flex;
        align-items: center;
        justify-content: center;    
        padding-top: 2%;
        font-weight: 700;
        font-size: 8rem;
    }

    .destitle
    {
        font-weight: 500;
        font-size: 6rem;
        text-align: center;
        border-bottom: 2px solid #6b8648;
    }

    .history
    {
        padding-top:2%;
        margin: 0;
    }

    .col-xl-4
    {
        padding-left: 1%;
        padding-right: 1%;
    }

    .content
    {
        font-size: 2rem;
        padding-bottom: 3%;
    }

    .content p
    {
        padding-right: 8%;
    }

    .sponsor
    {
        width: 40%;
        height: auto;
    }

    .footer h1
    {
        text-align: center;
        font-size: 6rem;
        border-bottom:2px solid #6b8648;
        padding-top:3%;
        padding-bottom: 3%;
    }

    #contatti
    {
        font-size: 2.5rem;
        align-items: center;
        text-align: center;
        padding-bottom: 2%;
    }

    #riferimenti
    {
        font-size: 2.5rem;
        align-items: center;
        text-align: center;
        margin: 0%;
        padding-bottom: 5%;
    }

}