body
{
    background-color: var(--pageBackground);
    font-family: "Montserrat", sans-serif;
    color: var(--darkText);
}

h1
{
    font-weight: bolder;
    font-size: 3rem;
}

h2
{
    font-family: "Lobster Two", cursive;
    font-size: 3rem;
}

.btn
{
    background-color: var(--buttonBackground);
    color: var(--buttonColor);
}

.btn:hover
{
    background-color: var(--buttonHoverBackground);
    color: var(--buttonHoverColor);
}

section
{
    padding: 5%;
}

section>h3
{
    margin-bottom: 50px;
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
}

.footer
{
    background-color: var(--footerBackground);
    color: var(--footerColor);
}

/*--- Colors ---*/
.themePrimary
{
    color: var(--themePrimary);
}

/*--- Website Header ----*/
.websiteHeader
{
    position: fixed;
    z-index: 1000;
    width: 100vw;
    top: 0;
    box-shadow: 0px 2px 4px #aaa;
}

/*--- Social Header ---*/
.socialHeader
{
    background-color: var(--themePrimary);
    padding: 10px;
    color: white;
    display: flex;
    justify-content: space-between;
    height: 50px;
}

.burger_menu
{
    @media screen and (max-width: 1280px)
    {
        display: inherit;
    }

    @media screen and (min-width: 1281px)
    {
        display: none;
    }
}

.mobile_menu
{
    display: none;
    position: fixed;
    z-index: 1050;
    top: 44px;
    width: 100vw;
    /* min-height: 50vh; */
    background-color: var(--themePrimary);
    padding-top: 20px;
    padding-bottom: 40px;
} 

.mobile_menu.show
{
    display: block;
}

.mobile_menu a
{
    display: block;
    text-align: center;
    font-size: 1.4rem;
    padding: 5px 0;
    cursor: pointer;
} 

.mobile_menu a:hover
{
    color: white !important;
}

.divider
{
    flex-grow: 1;
}

.socialIcons i
{
    margin: 0px 10px;
}

.burger_menu i
{
    font-size: 1.4rem;
    cursor: pointer;
}

.burger_menu:hover
{
    opacity: .7 !important;
}

/*--- Logo Associazione ---*/
.logoAssociazione
{
    @media screen and (max-width: 600px)
    {
        .logo_wide
        {
            display: none;
        }      
          
        .logo_mobile
        {
            display: inherit;
            max-width: 100%;
            
        }        
    }
    @media screen and (min-width: 601px)
    {
        .logo_wide
        {
            display: inherit;
            max-width: 400px;
        }        
        .logo_mobile
        {
            display: none;
            
        }        
    }
}

.logoAssociazioneTop
{
    font-weight: bold;
    color: var(--lightText);

}

.logoAssociazioneBottom
{
    font-weight: bold;
    font-size: 1.5rem;
}

/*--- MENU ---*/
.websiteMenuBar
{
    display: flex;
    padding: 20px;
    justify-content: space-between;
    background-color: white;
    height:120px;
}
.contentWrapper
{
    margin-top: 170px;
}
.websiteMenuSection
{
    flex-grow: 1;
}

.websiteMenu
{
    @media screen and (max-width: 1280px)
    {
        display: none;
    }

    @media screen and (min-width: 1281px)
    {
        display: flex;
    }
}

.menuItem
{
    margin: 0px 20px;
    cursor: pointer;
    border-bottom: 3px solid white;
    display: block;
    color: var(--lightText);
    padding-top: 20px;
    font-weight: bold;
}

.menuItem:hover
{
    border-bottom: 3px solid var(--themePrimary);
    color: var(--darkText);
    text-decoration: none;
}

.consultori_title
{
    @media screen and (max-width: 1280px)
    {
        font-size: 2.5rem;
    }
}

#sostieni .sectionRight h1,
#sostieni .sectionRight p
{
    @media screen and (max-width: 1280px)
    {
        text-align: center !important;
    }
    
}

.links_utili a
{
    color: white;
}

.links_utili a:hover
{
    color: white;
}

.tirocinio_box
{
    background-color: white;
    padding: 20px;
    /* border-radius: 5px; */
    margin-top: 50px;
}
.tirocinio_box h3
{
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;

}
.tirocinio_box p
{
    color: #555;
    
}

.tirocinio_link
{
    font-weight: bold;
    color: black !important;
}

.tirocinio_link:hover
{
    font-weight: bold;
    color: black !important;
}