/* Range Sliders */
    input[type="range"]{
        position: relative;
        width: 100%;
        height: 10px;
        margin: 5px 0px;
        color: #fff;
        -webkit-appearance: none;
        background-color: #ff9b29;
        outline: none;
        border-radius: 100px;
        z-index: 5;
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        background-color: #fff;
        cursor: pointer;
        border-radius: 100px;
    }

    input[type="range"]::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background-color: #ffaa00;
        cursor: pointer;
        border-radius: 100px;
        background-color: #ff9b29;
    }


    .range_container{
        position: relative;
        width: 50%;
        margin: auto;
        margin-bottom: 10px;
    }

    .range_point{
        position: absolute;
        width: 4px;
        height: 20px;
        background-color: #ff9b29;
        top: 0;
    }

    .range_point:nth-child(1){
        left: 8px;
    }
    .range_point:nth-child(2){
        left: calc(50% - 2px);
    }
    .range_point:nth-child(3){
        right: 8px;
    }



#partners{
    width: 90%;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}
#partners h2{
    padding-top: 4px;
}
#partners img{
    width: 90%;
    max-width: 477px;
}  
