body{
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
}

.container{
    margin: 100px auto;
    padding: 0 5%;
    max-width: 1200px;
}
.tarif_body{
    padding: 50px;
    background-color: #f3f5f8;
    border-radius: 50px;
}
.tarif_label{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.tarif_info{max-width: 700px;}
.tarif_info h2{font-size: 42px;}
.tarif_info p{margin-bottom: 20px; font-size: 20px; font-weight: 500;}
.tarif_info .green_h2{color: #16e09e;}
.tarif_range input{
    width: 330px;
    height: 20px;
    -webkit-appearance: none;
    background-color: #d1c8fb;
    border-radius: 10px;
    outline: none;
    overflow: hidden;
}
.tarif_range input::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    outline: solid #ffffff;
    cursor: pointer;
    background-color: #7c4eff;
    box-shadow: -407px 0 0 400px #7c4eff;
}
.range_volume{font-size: 20px; font-weight: 650; color: #7c4eff;}
.range_price{font-size: 20px; font-weight: 650; color: #7c4eff;}

.tarif_img{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.tarif_volume-circle{
    position: absolute;
    bottom: 108px;
    font-size: 48px;
    font-weight: 800;
    color: #7c4eff;
}
.tarif_volume-circle:after{
    content: "";
    display: block;
    margin: 15px auto;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background-color: #d1c8fb;
}
.tarif_price-circle{
    position: absolute;
    bottom: 75px;
    font-weight: 600;
    font-size: 24px;
    color: #7c4eff;
}
.range_volume{position: relative;}
.range_price{position: relative;}
.tarif_button_container{
    margin: 50px 0 30px 0;
    text-align: center;
}
.tarif_button{
    padding: 20px 50px 20px 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(230.52deg, #926bff 21.73%, #7c4eff 72.58%);
    box-shadow: 0 8px 6px -6px #564cea99, 0 14px 12px -8px #564cea99, 0 22px 24px -16px #564cea99;
    border: none;
    border-radius: 12px;
    transition: all .3s ease 0s;
}
.tarif_button:hover{
    background: linear-gradient(0deg, #ffffff1a, #ffffff1a), linear-gradient(230.52deg, #926bff 21.73%, #7c4eff 72.58%);
}

.range_volume{
    width: 80px;
}
.range_price{
    width: 90px;
}

@media (max-width: 536px){
    .tarif_info h2{font-size: 30px;}
    .tarif_info p{font-size: 18px;}
    .tarif_range input{width: 230px;}
}
@media (max-width: 487px){
    .tarif_img img{width: 100%;}
}
@media (max-width: 400px){
    .tarif_volume-circle{bottom: 75px;}
    .tarif_price-circle{bottom: 50px;}
    .tarif_info h2{font-size: 25px;}
    .tarif_info p{font-size: 16px;}
    .tarif_volume-circle{font-size: 35px;}
    .tarif_price-circle{font-size: 20px;}
    .tarif_body{padding: 40px;}
}