.color-white {
    color:#fff;
}
.color-black {
    color:#000;
}
.color-dark {
    color:#282828;
}
.color-green {
    color:#53CFBA;
}
.color-orange {
    color:#FF500F;
}
.bg-grey{
    background-color: #f0f0f0;
}
.bg-light-green {
    background-color:rgba(83, 207, 186, 0.1);
}
.bg-light-orange {
    background-color:rgba(255, 80, 15, 0.1);
}
.bg-green {
    background-color:#009681;
}
.bg-orange {
    background-color:#FF500F;
}
/*_flex inizio*/
.d-flex,
.flex {
    display:flex;
}
.flex-column {
    flex-flow:column;
}
.align-center,
.align-items-center {
    align-items: center;
}
.align-start,
.align-items-start {
    align-items: start;
}
/*_flex fine*/
.w-25 {
    width:20%;
}
.w-50 {
    width:50%;
}
.w-100 {
    width:100%;
}
.w-0 {
    width:0;
}

.title-av {
    font-size: 2.5em;
    font-weight: bold;
}
.text-upper {
    text-transform: uppercase;
}
.m-0 {
    margin:0;
}
.p-0 {
    padding:0;
}
.pulsante {
    color: white;
    display: inline-block;
    text-align: center;
    width: auto;
    height: 2.5em;
    line-height: 2.5em;
    padding: 0 1em;
    margin:10px 0;
}
.pulsante > img {
    width: 20px;
}
.pulsante:hover {
    color: white !important;
}
.ml-15 {
    margin-left:15px;
}
.pt-60 {
    padding-top:60px;
}
.pb-60 {
    padding-bottom:60px;
}
.mb-10 {
    margin-bottom:10px;
}
.ml-20 {
    margin-left:20px;
}
.mt-40 {
    margin-top:40px;
}
.fs-1 {
    font-size:1rem;
}
.pb-0 {
    padding-bottom:0;
}
.mb-0 {
    margin-bottom:0;
}
.text-right {
    text-align: right;
}
@media (max-width:576px){
    .mb-25-mobile {
        margin-bottom:25px;
    }
    .text-center-mobile {
        text-align: center !important;
    }
    .text-left-mobile {
        text-align: left !important;
    }
    .pulsante {
        height:auto;
    }
    .pulsante > img {
        display:none;
    }
    .mobile_column {
        flex-flow: column;
    }
    .pt-60 {
        padding-top:30px;
    }
    .pb-60 {
        padding-bottom:30px;
    }
}