.sticky-area-section {
    padding-block: 4rem;

    .sticky-area-section-inner {
        position: relative;


        li {
            margin-block-end: 70px;
            padding: 0!important;
            margin-left : 0!important;
            &::before {
                display: none!important;
            }
        }

        .sticky-area {
            position: sticky;
            top:80px;
            height: fit-content;


            @media only screen and (max-width: 767px) {
                position: initial;
                margin-block-end: 4rem;
            }

            .header--wrapper {
                width: 500px;

                @media only screen and (max-width: 767px) {
                    width: 100%
                }
            }
        }
    }

    ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 70px;

        li {
            display: flex;
            flex-direction: column;
            gap: 30px;

            strong {
                font-size: 24px;
                line-height: 100%;
            }

            p {
                color: #000;
            }
        }
    }
}