*,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: #ffffff;
        }

        .timeline {
            position: relative;
            width: 100vw;
            max-width: 1140px;
            /* margin: 50px auto 0 auto; */
            margin: 0 auto 0 auto;
            padding: 15px 0;
            padding-top: 70px;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 2px;
            background: #006E51;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
            margin-top: 50px;
        }

        .container {
            padding: 15px 30px;
            position: relative;
            background: inherit;
            width: 50%;
        }

        .container.left {
            left: 0;
        }

        .container.right {
            left: 50%;
        }

        .container::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            top: calc(50% - 8px);
            right: -8px;
            background: #ffffff;
            border: 2px solid #006E51;
            border-radius: 16px;
            z-index: 1;
        }

        .container.right::after {
            left: -8px;
        }

        .container::before {
            content: '';
            position: absolute;
            width: 22px;
            height: 2px;
            top: calc(50% - 1px);
            right: 8px;
            background: #006E51;
            z-index: 1;
        }

        .container.right::before {
            left: 8px;
        }

        .container .date {
            position: absolute;
            display: inline-block;
            top: calc(50% - 8px);
            text-align: center;
            font-size: 14px;
            font-weight: bold;
            color: #006E51;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 1;
        }

        .container.left .date {
            right: -75px;
        }

        .container.right .date {
            left: -75px;
        }

        .container .icon {
            position: absolute;
            display: inline-block;
            width: 70px;
            height: 70px;
            /* padding: 9px 0; */
            top: calc(50% - 35px);
            background: #F6D155;
            /* border: 2px solid #006E51; */
            border-radius: 50%;
            text-align: center;
            font-size: 18px;
            color: #006E51;
            z-index: 1;
            background-color: #71d371;
        }

        .container.left .icon {
            right: 45px;
        }

        .container.right .icon {
            left: 45px;
        }

        .container .content {
            padding: 30px 90px 30px 30px;
            background: #F6D155;
            position: relative;
            border-radius: 0 500px 500px 0;
        }

        .container.right .content {
            padding: 30px 30px 30px 90px;
            border-radius: 500px 0 0 500px;
        }

        .container .content h2 {
            margin: 0 0 10px 0;
            font-size: 18px;
            font-weight: normal;
            color: #006E51;
        }

        .container .content p {
            margin: 0;
            font-size: 16px;
            line-height: 22px;
            color: #000000;
        }

        @media (max-width: 767.98px) {
            *{
                overflow-x: hidden;
            }
            .timeline{
                width: 100vw;
            }
            .timeline::after {
                left: 25px;
            }

            .container {
                width: 100vw;
                padding-left: 65px;
                padding-right: 30px;
            }

            .container.right {
                left: 0%;
            }

            .container.left::after,
            .container.right::after {
                left: 3px;
                display: none;
            }

            .container.left::before,
            .container.right::before {
                left: 43px;
                border-color: transparent #006E51 transparent transparent;
            }

            .container.left .date,
            .container.right .date {
                right: auto;
                left: 15px;
                width: 100px;
                display: none;
            }

            .container.left .icon,
            .container.right .icon {
                right: auto;
                left: 5px;
            }

            .container.left .content,
            .container.right .content {
                padding: 30px 30px 30px 60px;
                border-radius: 500px 0 0 500px;
            }
            .container .icon {
                width: 40px;
                height: 40px;
                top: calc(50% - 20px);

            }

            @media (max-width: 440px) {
                .container.left .content,
                .container.right .content {
                    padding: 30px 30px 30px 60px;
                    border-radius: 40% 0 0 40%;
                }

                .container{
                    padding-right: 5px
                }

                .content{
                    padding: 30px 0 30px 60px;

                }
            }
        }