





		#wellness-container {
        position: relative;
    }

    #base-wellness-img {
        position: absolute;
        top: -2%;
        left: 45%;
    }

    #base-wellness-text {
        position: absolute;
        top: 44%;
        left: 40%;
    }

    #stroke-path {
        opacity: 0;
    }

    .stroke-path {
        stroke-dasharray: 1600;
        stroke-dashoffset: 1600;
        animation: pathoffset 5s linear forwards,
        pathopacity 5s linear forwards;
    }

    @keyframes pathoffset {
        to {
            stroke-dashoffset: 0;
        }
    }

    @keyframes pathopacity {
        0% {
            opacity: 0
        }
        5% {
            opacity: 1
        }
        100% {
            opacity: 1
        }
    }

