@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

:root {
    --heading-font: #040406;
    --para-color: #3b3b3d;
    --blue: #42387b;
}

.container-fluid {
    width: 100%;
    height: min(100vh, 100dvh, 100lvh);
    background-image: url(./imgs/images/Frame\ 1272628258.png);
    background-size: cover;
}

.container-fluid .row {
    display: flex;
    justify-content: space-between;
}

.container-fluid .row .left {
    width: 25%;
    height: min(100vh, 100dvh, 100lvh);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.container-fluid .row .left .inner-content {
    width: 70%;
}

img {
    width: 61px;
    margin-bottom: 10px;
}

.container-fluid .row .left .inner-content h2 {
    color: var(--heading-font);
    line-height: 35px;
}

.container-fluid .row .left .inner-content p {
    font-size: 12px;
    color: var(--para-color);
    line-height: 20px;
}

.right {
    width: 70%;
    height: min(100vh, 100dvh, 100lvh);
    position: relative;
    padding: 30px 0;
}
.container-fluid .right .img {
    width: 95%;
    height: 95%;
    margin: 1% auto;
    position: absolute;
}

.container-fluid .right .img img {
    width: 100%;
    height: 100%;
}

.right-content-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.right-content {
    position: relative;
    top: 0;
    left: 0;
    padding: 60px;
    width: 100%;
    height: 100%;
}

.comparison {
    margin: 20px 0 0 20px;
    max-width: 350px;
    display: flex;
    position: absolute;
}

.comparison__compare {
    padding: 15px;
    width: 50%;
    background: linear-gradient(to right, #fff 50%, #e8e7ef);
    border-right: 3px solid #fff;
}

.comparison__compare::before {
    content: 'vs';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    width: 30px;
    height: 20px;
    background: #e0e1f3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #4d41cc;
    border: 1px solid #4d41cc;
}

.comparison__compare--right {
    padding-left: 25px;
    background: linear-gradient(to left, #fff 50%, #e8f1ee);
    border-left: 3px solid #fff;
}

.container-fluid .right .right-content .img {
    width: 40%;
    height: 12%;
    position: absolute;
    left: 8%;
    top: 10%;
    display: flex;
    justify-content: space-between;

}

.container-fluid .right .right-content .img .img-content {
    position: absolute;
    width: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25%;
    padding-left: 10px;
}

.price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price .circle {
    width: 10px;
    height: 10px;
    clip-path: circle(50%);
    background-color: green;
}

.price .circle.blue {
    background-color: var(--blue);
}

.comparison__compare p {
    font-size: 14px;
    color: var(--para-color);
    margin-left: 15px;
    margin-top: 5px;
    font-weight: 500;
}

.comparison__compare h4 {
    margin-left: 15px;
    color: var(--blue);
}


.chart {
    margin-top: 30px;
    width: 95%;
}

.range-input label {
    display: block;
}

.range-input input {
    width: 100%;
    margin-top: 10px;
}


.range-container {
    position: relative;
    width: 300px;
  }
  
  input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 0;
  }
  
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
  }
  
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
  }
  
  input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
  }
  
  input[type=range]::-ms-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .thumb-value {
    position: absolute;
    top: -30px;
    transform: translateX(-50%);
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    pointer-events: none;
  }
  
