#why-needs-section {
    /* padding-top:30px; */
    padding-bottom: 60px;
    position: relative;
}

#why-needs-section h2 {
    font-weight: 600;
}

#why-needs-section .content {
    flex-direction: column;
    align-items: center;
}

#why-needs-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    width: 100%;
}

#why-needs-section #check-list {
    width: 100%;
}

#why-needs-section #check-list h5 {
    margin: 12px 0;
}

#why-needs-section #check-list > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

#why-needs-section #check-list > div img {
    object-fit: contain;
}

#notebook {
    position: relative;
}

#arrow-left,  #arrow-right {
    position: absolute;
    bottom: 52%;
    cursor: pointer;
}

#arrow-left {
    left:1%;

}

#arrow-right {
    right:1%;
}

#mobile-carousel {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

#mobile-carousel > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 165px;
}

#mobile-carousel .slide-btn {
    width: 30px;
    height: 6px;
    border-radius: 10px;
    background: #D9D9D9;
    z-index: 100;
}

#mobile-carousel .slide-btn.active {
    background: #9747FF;
}

#why-needs-section .elipse {
    display: none;
}

#slider-img {
    max-width: 90vw;
}

@media (max-width: 1200px) {
    #why-needs-content {
        flex-direction: column-reverse;
        margin-top: 16px;
        gap: 50px;
    }
    #why-needs-section #check-list {
        width:auto;
    }
}

@media (max-width: 768px) {
    #why-needs-section h2 {
        margin: 24px 0px;
        max-width: 310px;
        font-size: 30px;
        text-align: center;
    } 
    #notebook {
        display: none;
    }
    #why-needs-section .content {
        margin-top: 36px;
    }

    #mobile-carousel {
        display: flex;
    }

    #why-needs-section #check-list h5 {
        font-size: 16px;
    }
    #why-needs-section #check-list > div img {
        width: 24px;
    }

    #why-needs-section .elipse {
        display: block;
        position: absolute;
        bottom: -200px;
        right:0;
    }
    
}