/* ONLY XS */
@media (min-width: 0px) and (max-width: 575.98px) { ... }

/* ONLY SM */
@media (min-width: 576px) and (max-width:767.98px) { ... }

/* ONLY MD */
@media (min-width: 768px) and (max-width: 991.98px) { ... }

/* ONLY LG */
@media (min-width: 992px) and (max-width: 1199.98px) { ... }

/* ONLY XL */
@media (min-width: 1200px) and (max-width: 1399.98px) { 
    .player-servizi {
        width: 240px;
        right: -5%;
    }
}
@media (min-width: 1399.99px) and (max-width: 1849.99px) { 
    .player-servizi {
        width: 270px;
        right: 0%;
    }
}


/*// X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 
    .hero{
        min-height: 50vh;
    }
    .padding-col-sx {
        padding-left: 15px;
        padding-right: 15px;
    }
    .padding-col-dx {
        padding-left: 15px;
        padding-right: 15px;
    }
    .title-section {
        font-size: 50px;
    }
}

/*// Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) { 

    html {
        font-size: 15px; /* Base del rem */
    }
    
    h1 {
        font-size: 4.3rem;
        letter-spacing: -0.20rem;
    }
    
    .text-xl{
        font-size: 2.5rem;
    }
    
    .navbar {
        /*background-color: rgba(0, 0, 0, 0.8) !important;*/
    }
    
    .navbar .navbar-container {
        border-bottom: transparent;
    }
    .padding-col-sx {
        padding-left: 5%;
        padding-right: 5%;
    }
    .padding-col-dx {
        padding-left: 5%;
        padding-right: 5%;
    }
    .number {
        font-size: 50px; 
    }
    .caption-number {
        font-size: 13px;
    }

}

/*// Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    
    section{
        padding-top:60px;
        padding-bottom:60px;
    }
    .player-servizi {
        position: relative;
        width: auto;
        top: auto;
        right: auto;
        transform: none;
    }
    
}

/*// Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { 
    
    html {
        font-size: 15px; /* Definisci la base del rem */
    }
    .player-servizi {
        width: 200px;
        right: -5%;
    }

}

/*// X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) { ... }

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { ... }

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { ... }

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { 
    
    .w-lg-50{
        width: 50%;
    }
    
    .w-lg-75{
        width: 75%;
    }
}

/*// X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { ... }

/*// XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { ... }