
body {
    font-family: 'Montserrat', sans-serif;
}

.global-range {
    width: 48%;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(20, 19, 19, 0.8);
    box-shadow: rgba(76, 77, 79, 0.08);
    border-radius: 8px;
    cursor: pointer;
}

.global-range h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 1rem;
    color: orangered;
}

.global-range h2 {
    text-align: center;
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.global-range h2:hover{
    color: orangered;
}


.wrapper {
   width: 100%;
   display: flex;
   align-items: center;
   flex-direction:column ;
}

.range {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.range .arte li {
    list-style: none;
    width: 100%;
    transition: all 0.5s ease;
}

.range .arte li img {
    height: 400px;
    width: 100%;
}

.range-arte{
    height: 10px;
    width: 100%;
    background-color: #ffff;
    margin-top: 1.5rem;
    position: relative;
    border-radius: 50px;
    cursor: pointer;
}

.range-arte input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    outline: none;
    -webkit-appearance: none;
    background:none;
}

.range-arte input::-webkit-slider-thumb {
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    background: none;
    cursor: pointer;
}

.progress-bar{
    height: 100%;
    width: 0;
    border-radius: 50px;
    background-color: orangered;
    cursor: pointer;
}

.range-arte .thumb {
    height: 64px;
    width: 64px;
    background: url(./peso.png);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    cursor: pointer;
}

.range-arte .thumb span {
    display: block;
    height: 100%;
    width: 100%;
}


.aluno {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: -5rem;
}

#aluno, #valor{
    font-size: 22px !important; 
}

#mes {
    font-size: 16px !important;
}

@media screen and (max-width:1000px) {
    .wrapper {
        width: 450px;
        height: 400px;
    }

    .range .arte li img {
        width: 450px;
    }

    #aluno, #valor{
        font-size: 20px !important; 
    }
    
    #mes {
        font-size: 14px !important;
    }
}

@media screen and (max-width:900px) {
    .range .arte li img {
        width: 410px;
    }

    #aluno, #valor{
        font-size: 18px !important; 
    }
    
    #mes {
        font-size: 12px !important;
    }
}

@media screen and (max-width:800px) {
    .global-range{
        width: 480px;
    }

    .wrapper {
        
        height: 420px;
    }

    .range .arte li img {
        width: 480px;
    }

    .global-range h1 {
        font-size: 22px;
    }
    
    .global-range h2 {
        font-size: 18px;
    }
}

@media screen and (max-width:600px) {
    .global-range{
        width: 400px;
    }

    .wrapper {
        width: 380px;
    }

    .range .arte li img {
        width: 380px;
        object-fit: cover;
    }

    .global-range h1 {
        font-size: 22px;
    }
    
    .global-range h2 {
        font-size: 18px;
    }
}

@media screen and (max-width:500px) {
    .global-range{
        width: 380px;
    }
    .range .arte li img {
        width: 370px;
    }

    .global-range h1 {
        font-size: 20px;
    }
    
    .global-range h2 {
        font-size: 16px;
    }

    #aluno, #valor{
        font-size: 16px !important; 
    }
    
    #mes {
        font-size: 12px !important;
    }
}


@media screen and (max-width:450px) {
    .global-range{
        width: 320px;
    }
    .wrapper {
        width: 320px;
    }
    .range .arte li img {
        width: 340px;
    }

    .global-range h1 {
        font-size: 18px;
    }
    
    .global-range h2 {
        font-size: 14px;
    }

    #aluno, #valor{
        font-size: 12px !important; 
    }
    
    #mes {
        margin-top: 1rem;
        font-size: 10px !important;
    }
}





