@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

.home {
    background-image: url("../../src/img/img-header.webp"),url("../../src/img/square.webp"),url("../../src/img/square-1.webp"),url("../../src/img/square-2.webp"),url("../../src/img/square-3.webp"),linear-gradient(rgb(255, 255, 255), rgba(244, 246, 248));
    background-repeat: no-repeat;
    background-position: top 0px right 0px,top 25vh left -50%,top 10% right -60%,top 60% right -40%,bottom -5% left -40%, top 0 right 0;
    background-size: 70%, 50%, 50%, 50%, 50%, auto;
}

.hometarifs{
    background-image: url("../../src/img/square.webp"),url("../../src/img/square-1.webp"),url("../../src/img/square-2.webp"),url("../../src/img/square-3.webp"),linear-gradient(rgb(255, 255, 255), rgba(244, 246, 248));
    background-repeat: no-repeat;
    background-position: top 25vh left -50%,top 10% right -60%,top 60% right -40%,bottom -5% left -40%, top 0 right 0;
    background-size: 50%, 50%, 50%, 50%, auto;
}

.text-black{
    color: #333333 !important;
}

.list-unstyled li:before{
    content : ".";
    font-size: 100px;
    line-height: 20px;
    color: #25b2ea;
}

.card{
    border-radius: 25px;
}

.text-justify{
    text-align: justify;
    justify-content: normal;
}

.box-minmax {
    margin-top: 30px;
    width: 608px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: #000;
}
.box-minmax span:first-child {
    margin-left: 10px;
}
#rs-range-line {
    border-radius: 8px;
    height: 4px;
    width: 800px;
    max-width: 90%;
    outline: none;
    -webkit-appearance: none;
}

input[type='range']::-webkit-slider-thumb {
    width: 20px;
    -webkit-appearance: none;
    height: 20px;
    background: #ffffff;
    border: 3px solid #312783;
    border-radius: 10px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid  #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #312783;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider:before {
    background-color: white;
}

input:checked + .slider {
    background-color: #312783;
}

input:focus + .slider {
    box-shadow: 0 0 1px #312783;
}

input:checked + .slider:before {
    -webkit-transform: translateX(31px);
    -ms-transform: translateX(31px);
    transform: translateX(31px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}