.what_to_expect_section {

    & .section_inner {
        width: 100%;

        & h2, & h3, & h4 {
            width: 100%;
            text-align: center;
            margin: 0 0 5rem;
        }

        & .points {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: wrap;

            & .point {
                width: 20%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;

                @media (max-width: 991px) {
                    width: 100%;

                    &:not(:last-child) {
                        margin-bottom: 3rem;
                    }
                }

                & .count {
                    width: 6.3rem;
                    height: 6.3rem;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    background: var(--teal);
                    font-size: 2.4rem;
                    color: var(--white);
                    border-radius: 50%;
                    margin: 0 0 3rem;
                }

                & h3, & h4 {
                    font-size: 2rem;
                    font-weight: 700;
                    color: var(--dark-green);
                    margin: 0 0 3rem;
                }

                & p {
                    margin: 0;
                }
            }

            & .separator {
                width: 24.4rem;
                height: 0;
                border-top: 2px dotted var(--teal);
                position: relative;
                top: 3rem;

                @media (max-width: 991px) {
                    display: none;
                }
            }
        }

    }

}