	/* Mobile viewport */
    /* this is the wrapper box */
    .timeline {
        display: flex;
        width: 100%;
        position: relative;
        flex-direction: column;
    }
    .timeline__item {
        align-items: center;
        display: grid;
        flex-direction: column;
        grid-template-columns: 1fr 73px 1fr;
        grid-template-rows: auto;
        justify-items: stretch;
        margin-bottom: 35px;
        position: relative;
        z-index: 1;
    }
    .timeline__icon {
        border-radius: 50%;
        display: block;
        height: 73px;
        width: 73px;
    }
    .timeline__icon-image {
        width: 100%;
    }
    .timeline__description {
        margin: 0 20px;
    }

    .timeline__desc-hat {
        display: block;
		font-weight: bold;
    }

    /* Bar */
    .timeline::after {
        background: #F1F1F1;
        content: "";
        display: block;
        height: calc(100% - 13px);
        left: calc(50% - 4.5px);
        position: absolute;
        width: 8px;
        z-index: 0;
    }
    /* Arrow */
    .timeline::before {
        bottom: 0;
        content: "";
        display: block;
        height: 0;
        left: calc(50% - 10px);
        position: absolute;
        width: 0;
        z-index: 1;
        /* those are params for sizing */
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 15px solid #F1F1F1;
    }
    /* Customizations */
    .timeline__description:first-child {
        text-align: right;
    }
    .timeline__description:last-child {
        text-align: left;
    }
    .timeline__description b {
        font-weight: bold;
    }
    /* Tablet */
    @media only screen and (min-width: 768px) {
        .timeline__item {
           grid-template-columns: 1fr 114px 1fr;
           justify-items: stretch;
           margin-bottom: 50px;
        }
        .timeline__icon {
            height: 114px;
            width: 114px;
        }
        .timeline__description {
            margin: 0 40px;
        }
    }
    /* end of table */
    /* Landscape Tablet */
    @media only screen and (min-width: 1024px) {
        .timeline {
            flex-direction: row;
            /* height: 400px; */
            justify-content: space-evenly;
        }
        .timeline__item {
            grid-template-columns: 100%;
            grid-template-rows: 1fr 81px 1fr;
            justify-items: center;
            width: 133px;
            align-items: initial;
            grid-row-gap: 40px;
        }
        .timeline__icon {
            align-items: center;
            display: flex;
            height: 81px;
            justify-content: center;
            width: 81px;
        }
        .timeline .timeline__description {
            margin: 0;
            text-align: center;
            display: flex;
            flex-direction: column;
        }
        .timeline .timeline__description:first-child {
            flex-direction: column-reverse;
        }

        /* Bar */
        .timeline::after {
            background: #F1F1F1;
            height: 8px;
            left: 0;
            position: absolute;
            top: calc(50% - 7.5px);
            width: calc(100% - 25px);
        }
        /* Arrow */
        .timeline::before {
            bottom: auto;
            left: auto;
            right: 0;
            top: calc(50% - 13px);
            /* those are params for sizing */
            border-bottom: 10px solid transparent;
            border-left: 15px solid #F1F1F1;
            border-top: 10px solid transparent;
        }
        /* customizations */
        .timeline__item .timeline__description:first-child {
            text-align: center;
        }
        .timeline__item:first-child {
            margin-top: 0;
        }
        .timeline__item:last-child {
            margin-bottom: 0;
            margin-right: 30px;
        }
        .timeline__item:not(:last-child) {
            margin-bottom: 0;
            margin-right: 20px;
        }
    }
    /* end of landscape tablet */
    /* Larger viewport */
    @media only screen and (min-width: 1390px) {
        .timeline__item {
            width: 186px;
            grid-template-rows: 1fr 114px 1fr;
        }
        .timeline__icon {
            height: 114px;
            width: 114px;
        }   
    }
    /* end of larger viewport */
