/**************************
    RESET TXT DAL CRM
***************************/
.servizio_p p{
    max-width: 900px;
    width: 100%;
    margin: 0;
    text-align: justify;
    pointer-events: all;
}
.servizio_p p:not(.servizio_p p:last-child){
    padding-bottom: 2rem;
}
p > a,
.servizio_p > ul li a{
    text-decoration: underline;
    color: var(--bright_gold);
}
.servizio_p > ul{
    list-style: disc;
    text-align: justify;
    padding-bottom: 2rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.servizio_p > ul li:not(.servizio_p > ul li:last-child){
    margin-bottom: 1rem;
}
.page_p p{
    max-width: 900px;
    width: 100%;
    text-align: justify;
}
.servizio_p > ol{
    text-align: justify;
    padding-bottom: 2rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.servizio_p > ol li:not(.servizio_p > ol li:last-child){
    margin-bottom: 1rem;
}
/*******************************************************************/
.servizi_row{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.servizi_col{
    width: calc((100% - 2rem) / 2);
    height: 18.75rem;
    box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.25);

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all .3s linear;
}
.servizi_col .servizi_img,
.servizi_col h2{
    width: 50%;
}
.servizi_col .servizi_img{
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.servizi_col .servizi_img img{
    height: 100%;
    width: auto;
    transition: all 450ms linear;
}
.servizi_col h2{
    will-change: transform;
    text-align: center;
    color: var(--dark_gold);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    text-transform: uppercase;
    padding: 0 1rem;
    transition: all 450ms ease;
}
.servizi_col:hover .servizi_img img{
    transform: scale(1.05);
}
.servizi_col:hover h2{
    color: var(--bright_gold);
    transform: scale(1.05);
}
.servizi_col:hover{
    box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.35);
}
.servizi_col:active{
    transform: scale(1);
    box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.35);
}
.servizi_col:active .servizi_img img,
.servizi_col:active h2{
    transform: scale(1);

}
@media screen and (max-width: 1280px){
    .servizi_col{
        height: 18rem;
    }
    .servizi_col h2{
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
@media screen and (max-width: 1024px){
    .servizi_col{
        height: 14rem;
    }
}
@media screen and (max-width: 768px){
    .servizi_col{
        width: 100%;
        height: 16rem;
    }
}
@media screen and (max-width: 430px){
    .servizi_col{
        height: 14rem;
    }
}
@media screen and (max-width: 390px){
    .servizi_col{
        height: 8rem;
    }
    .servizi_col .servizi_img{
        display: none;
    }
    .servizi_col h2{
        width: 100%;
    }
}
/**************************
   SHOW SERVIZI
***************************/
.servizio_hero{
    margin-top: .5rem;
    max-height: 450px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--bordeaux);
}
.servizio_p{
    margin: 5rem auto;
    max-width: 900px;
    width: 100%;
}
.servizi_pdf{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.servizi_pdf i{
    color: var(--bordeaux);
    font-size: 2.5rem;
}
.servizi_pdf a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .35rem;
    color: var(--dark_gold);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}
.servizio{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.servizio > a{
    margin-top: 5rem;
    display: block;
}
@media screen and (max-width: 1024px){
    .servizio_hero{
        margin-top: 60px;
    }
    .page_wrapper {
        margin: 5rem auto;
        margin-top: 8rem;
    }
}
@media screen and (max-width: 768px){
    .servizio_p{
        margin: 3rem auto;
    }
    .servizio > a{
        margin-top: 3rem;
    }
}