﻿.Container{
    width:100%;
    margin:0 auto;
    padding:0px;
}


.Corpo25Mobile {
    width: 25%;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.Corpo30Mobile {
    width: 30%;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.Corpo50Mobile {
    width: 50%;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.Corpo100Mobile{
    width:100%;
    float:left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.Menu, .Header, .DisplayNoneMobile {
    display:none;
}

.Margin0Mobile {
    margin: 0;
}


.AllineaTestoCentroMobile {
    text-align:center;
}

.HomeFrasePadding{
    padding:20px 5px 0px 30px !important;
}


.Testox1Mobile {
    font-size: 1em !important;
}


.Testox1e5Mobile {
    font-size: 1.5em;
}

.Testox2Mobile {
    font-size: 2em;
}


.Testox3Mobile{
    font-size:3em;
}


.LineHeight40 {
    line-height:20px;
}

.Padding30x60 {
    padding:10px;
}

.PaddingMobile10x10{
    padding:10px 10px !important;
}

.Padding0x20Mobile {
    padding: 0 20px !important;
}

.Padding20x20Mobile {
    padding: 20px 20px !important;
}

.PulsanteBiancoSmeraldo {
    width: 80%;
    margin: 0 10%;
}

.MarginMobile150x0x0x0{
    margin: 100px 0 0 0;
}

.FooterFisso {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.PaddingFooter{
    padding-bottom:100px;
}

.DisplayFlexMobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.OrdineUno{
    order:1;
}

.OrdineDue{
    order:2;
}

/*****************************************
    MENU MOBILE
*****************************************/
.LinkMenuMobile {
    color: #91a459; /* verde */
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #91a459;
    text-align:center;
    
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.MenuSlide {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 100%;
    padding: 10px 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

    .MenuSlide.attiva {
        max-height: 500px; /* abbastanza grande per tutti i link */
        opacity: 1;
    }
