*,
*::before,
*::after {
    box-sizing: border-box;
}
.timeline {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #3b5b4e;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.containert {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    width: 50%;
}

.containert.left {
    left: 0;
}

.containert.right {
    left: 50%;
}

.containert::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: -8px;
    background: #ffffff;
    border: 2px solid #3b5b4e;
    border-radius: 16px;
    z-index: 1;
}

.containert.right::after {
    left: -8px;
}

.containert::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: #3b5b4e;
    z-index: 1;
}

.containert.right::before {
    left: 8px;
}

.containert .date {
    position: absolute;
    display: inline-block;
    top: calc(50% - 8px);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #3b5b4e;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.containert.left .date {
    right: -75px;
}

.containert.right .date {
    left: -75px;
}

.containert .icon {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 9px 0;
    top: calc(50% - 20px);
    background: white;
    border: 2px solid #3b5b4e;
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: #3b5b4e;
    z-index: 1;
}

.containert.left .icon {
    right: 56px;
}

.containert.right .icon {
    left: 56px;
}

.containert .content {
    padding: 30px 90px 30px 30px;
    position: relative;
    border-radius: 0 500px 500px 0;
}

.containert.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
}

.containert .content h2 {
    margin: 0 0 10px 0;
    font-size: 25px;
    font-weight: normal;
    color: #3b5b4e;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.containert .content p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

@media (max-width: 767.98px) {
    .timeline::after {
        left: 90px;
    }

    .containert {
        width: 100%;
        padding-left: 120px;
        padding-right: 30px;
    }

    .containert.right {
        left: 0%;
    }

    .containert.left::after,
    .containert.right::after {
        left: 82px;
    }

    .containert.left::before,
    .containert.right::before {
        left: 100px;
        border-color: transparent #006E51 transparent transparent;
    }

    .containert.left .date,
    .containert.right .date {
        right: auto;
        left: 15px;
    }

    .containert.left .icon,
    .containert.right .icon {
        right: auto;
        left: 146px;
    }

    .containert.left .content,
    .containert.right .content {
        padding: 30px 30px 30px 90px;
        border-radius: 500px 0 0 500px;
    }
}