  .benefitsContainer {
            margin: auto auto;
            position: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #EBF2DA;
            border-radius: 5px;
            width: 100%;
            top: 61px;
            height: 60px;
            z-index:5;
        }

        .benefitsList {
            display: flex;
            overflow: hidden;
            width: 100%;
            flex-direction: row;
        }

        .benefitsContainerInner {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .benefitText {
            display: flex;
            flex: 0 0 100%;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-family: 'Nunito', 'Roboto';
            font-size: 16px;
            font-weight: bold;
            gap: 6px;
            color: #00605B;
        }

        .benefitText>img {
            height: 40px;
            width: 40px;
        }


        .benefitText>span {
            text-align: left;
        }

        .controlBtn {
            background-color: transparent;
            border: none;
        }

        #prevBtn {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
        }

        #nextBtn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
        }

    

        @media (min-width: 1200px) {

            .benefitsContainer {
                position: fixed;
                width: 100%;
                top: 80px;
                left: 0;
                justify-content: center;
                background-color: #EBF2DA;
                border-radius: 5px;
                height: 50px;
                display: flex;
                align-items: center;
            }

            .benefitsContainerInner {
                width: 100%;
                max-width: 870px;
                display: flex;
                justify-content: space-between;
            }

            .benefitsList {
                justify-content: space-between;
            }

            .benefitText {
                flex: 1;
                display: none;
            }

            .benefitText.left,
            .benefitText.right {
                display: flex;
            }

            .benefitText>img {
                height: 40px;
                width: 40px;
            }

            .benefitText:first-child>span {
                width: 150px;
            }


            .benefitText>span {
                text-align: left;
            }

            .controlBtn {
                display: none;
            }
        }