/* DEMO ONLY ----------------------------------------------- */
/*
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  color: #000;
}

.container {
    max-width: 1420px;
    margin: 0 auto;
}

.container.grey {
   background: #f2f2f2; 
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.column, .columns {
    padding-right: .9375rem;
    padding-left: .9375rem;
}

@media print, screen and (min-width: 64em) {
    .row {
        margin-right: -.9375rem;
        margin-left: -.9375rem;
    }
}

@media print, screen and (min-width: 64em) {
    .large-10 {
        width: 83.33333%;
    }
}

@font-face {
    font-family: 'ff-tisa-web-pro';
    src: url('../fonts/TisaPro-Bold.woff2') format('woff2'),
        url('../fonts/TisaPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TisaPro-Ita';
    src: url('../fonts/TisaPro-Ita.woff2') format('woff2'),
        url('../fonts/TisaPro-Ita.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TisaPro-Medi';
    src: url('../fonts/TisaPro-Medi.woff2') format('woff2'),
        url('../fonts/TisaPro-Medi.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TisaPro-LightIta';
    src: url('../fonts/TisaPro-LightIta.woff2') format('woff2'),
        url('../fonts/TisaPro-LightIta.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
*/
/* DEMO ONLY ----------------------------------------------- */




.timeline {
    background-color: #fff;
    box-shadow: 0px 9px 29px 0px rgba(0, 0, 0, 0.04);
    padding: 58px 58px 58px 38px;
    margin: 48px 0 48px 24px;
    border-top: 2px solid #70399A;
    position: relative;
    font-family: 'Lato';
}

    .timeline:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 340px;
        background-color: #70399A;
    }

.timeline__head {
    display: flex;
    justify-content: space-between;
}

.timeline__head__info {
    width: 80%;
}

.timeline__head__info__title {
    display: flex;
    margin-bottom: 20px;
}

    .timeline__head__info__title h2 {
        font-size: 32px;
        letter-spacing: -0.01em;
        margin-right: 30px;
        font-family: "ff-tisa-web-pro", serif;
        font-weight: 700;
    }

    .timeline__head__info__title h3 {
        font-family: 'Lato';
        font-weight: 400;
        font-size: 20px;
        line-height: 44px;
        letter-spacing: -0.01em;
        display: flex;
    }

        .timeline__head__info__title h3 .timeline-info {
            margin-left: 5px;
            margin-top: 4px;
        }

.timeline__head__info__current h4 {
    font-family: 'Lato';
    font-weight: 700;
    color: #16264E;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: -0.01em;
}

.timeline__head__info__current__content {
    display: flex;
}

    .timeline__head__info__current__content .icon {
        height: 28px;
        width: 28px;
        display: block;
        background-color: #82B7D9;
        border-radius: 50%;
        margin-right: 16px;
    }

.timeline .current__number {
    font-family: 'Lato';
    font-weight: 700;
    color: #16264E;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.01em;
}

.timeline .current__title {
    font-family: 'ff-tisa-web-pro';
    font-size: 20px;
    line-height: 28px;
    color: #16264E;
    font-style: italic;
    font-weight: 400;
}

.timeline__head__legend {
    width: 176px;
}

    .timeline__head__legend .legend {
        font-family: 'Lato';
        font-weight: 700;
        font-size: 12px;
        color: #16264E;
    }

    .timeline__head__legend .states {
        display: flex;
        justify-content: space-between;
        border-bottom: 1.5px solid #BDBDBD;
        padding-bottom: 8px;
    }

.timeline-icon {
    background-color: transparent;
    appearance: none;
    border-radius: 50%;
    display: block;
    height: 30px;
    width: 30px;
    padding: 0;
    border: none;
    position: relative;
    transition: all 0.2s ease;
}

    .timeline-icon.completed:before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22px;
        height: 18px;
        transform: translate(-50%, -50%);
        background: url(../img/tick.svg) no-repeat center;
        background-size: contain;
        transition: all 0.2s ease;
    }

    .timeline-icon.completed:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22px;
        height: 18px;
        transform: translate(-50%, -50%);
        background: url(../img/tick-hover.svg) no-repeat center;
        background-size: contain;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
    }

@media screen and (min-width: 992px) {
    .timeline-icon:hover {
        box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.6);
    }

    .timeline-icon.completed:hover:before {
        opacity: 0;
        visibility: hidden;
    }

    .timeline-icon.completed:hover:after {
        opacity: 1;
        visibility: visible;
    }

    .timeline-icon.completed:hover {
        background-color: #fff;
    }
}

.timeline-icon.completed {
    background-color: #16264E;
}

.timeline-icon.current {
    background-color: #82B7D9;
}

.timeline-icon.future {
    border: 3px solid #BDBDBD;
}

.timeline-icon.guidelines {
    border: 3px solid #70399A;
}

.timeline__head__legend .states__item .icon {
    height: 20px;
    width: 20px;
    pointer-events: none;
}

    .timeline__head__legend .states__item .icon:before {
        height: 14px;
        width: 14px;
    }

.timeline__head__legend .states__item .text {
    font-family: 'ff-tisa-web-pro';
    font-weight: 400;
    letter-spacing: -0.01em;
    font-size: 14px;
    line-height: 1;
    font-style: italic;
}

.timeline-info {
    display: block;
    background: url(../img/info.svg) no-repeat center;
    background-size: contain;
    height: 16px;
    width: 16px;
}


.timeline-wrap {
    display: flex;
    margin-top: 48px;
    padding-bottom: 140px;
}

    .timeline-wrap .timeline-icon {
        cursor: pointer;
    }

.timeline-wrap__item:first-child .steps {
    display: flex;
    justify-content: space-between;
}

.timeline .steps .step {
    position: relative;
}

.timeline .steps .step__legend {
    position: absolute;
    width: 600px;
    padding-left: 28px;
    height: 120px;
    flex-direction: column;
    display: none;
}

    .timeline .steps .step__legend.active {
        display: flex;
    }

    .timeline .steps .step__legend:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 14px;
        width: 2px;
        height: 100%;
    }

.timeline-icon.completed + .step__legend:before {
    background-color: #16264E;
}

.timeline-icon.current + .step__legend:before {
    background-color: #82B7D9;
}

.timeline-icon.guidelines + .step__legend:before {
    background-color: #70399A;
}

.timeline-icon.future + .step__legend:before {
    background-color: #BDBDBD;
}

.timeline .steps .step__legend__title {
    display: flex;
    gap: 6px;
    margin-top: auto;
    font-family: 'Lato';
    font-size: 16px;
    color: #16264E;
}

.timeline .steps .step__legend__date {
    font-family: 'ff-tisa-web-pro';
    font-style: italic;
    font-weight: 300;
    color: #16264E;
    font-size: 16px;
    line-height: 1;
    margin-top: 6px;
}

.timeline-wrap__steps__content {
    display: flex;
}

    .timeline-wrap__steps__content .item {
        flex: 1;
        padding: 20px 40px 0 30px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

.timeline-wrap__item:first-child .timeline-wrap__steps__content .item:first-child {
    padding-left: 0;
}

.timeline-wrap__item:first-child {
    flex: 1;
}

    .timeline-wrap__item:first-child .timeline-wrap__steps__content .item:first-child:after {
        content: '';
        display: block;
        position: absolute;
        height: calc(100% + 2px);
        width: 4px;
        border-radius: 8px;
        background-color: #82B7D9;
        right: 0;
        top: 18px;
    }

.timeline__title {
    font-family: 'ff-tisa-web-pro';
    font-weight: 500;
    font-size: 16px;
    color: #16264E;
    line-height: 120%;
    max-width: 230px;
}

.timeline-wrap__item .bar {
    height: 34px;
    background-color: #E0E0E0;
    width: 100%;
}

.timeline-wrap__item:first-child .bar {
    background-color: #16264E;
    height: 34px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 8px;
    padding-top: 1px;
}

.timeline .bar__text {
    color: #fff;
    font-family: 'ff-tisa-web-pro';
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
}

.timeline-wrap__item .step {
    width: 30px;
}

.timeline-wrap__item:not(:first-child) .step__legend {
    left: auto;
    right: 0;
    padding-left: 0;
    padding-right: 28px;
    align-items: flex-end;
}

.timeline-wrap__item:not(:first-child) .step__legend__date {
    padding-right: 20px;
}

.timeline-wrap__item:not(:first-child) .step__legend:before {
    left: auto !important;
    right: 14px;
}

.timeline-wrap__item {
    position: relative;
}

    .timeline-wrap__item:after {
        content: '';
        display: block;
        position: absolute;
        width: 6px;
        height: 185px;
        background-color: #70399A;
        border-radius: 8px;
        top: -2px;
        right: 0;
    }

    .timeline-wrap__item .item {
        padding: 20px 30px 0 30px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .timeline-wrap__item .steps {
        display: flex;
        gap: 20px;
    }

.timeline-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .timeline-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.timeline-pop {
    width: 700px;
    background-color: #fff;
    box-shadow: 0px 9px 29px 0px rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 68px 120px 45px 56px;
}

    .timeline-pop.show {
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }

    .timeline-pop .timeline-icon {
        height: 50px;
        width: 50px;
        pointer-events: none;
        margin-bottom: 46px;
    }

        .timeline-pop .timeline-icon.completed:before {
            height: 36px;
            width: 36px;
        }

    .timeline-pop .stage-number {
        display: block;
        font-family: 'Lato';
        font-weight: 700;
        color: #16264E;
        line-height: 18px;
        font-size: 14px;
        margin: 0 0 16px 0;
    }

.timeline-pop__close {
    display: block;
    height: 42px;
    width: 42px;
    appearance: none;
    padding: 0;
    background: transparent url(../img/close.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    border: none;
}

#poptranche {
    padding: 160px 98px 45px 56px;
}

.pop__content__title {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Lato';
    color: #16264E;
}

.pop__content__description {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Lato';
    color: #16264E;
    margin-top: 16px;
    line-height: 30px;
    max-height: 200px;
    overflow-y: auto;
}

.pop__current span {
    color: #16264E;
    font-family: 'Lato';
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
}

.pop__current p {
    color: #16264E;
    font-family: 'ff-tisa-web-pro';
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
}

@media screen and (max-width: 991px) {
    .column, .columns {
        width: 100%;
        float: left;
        padding-right: .625rem;
        padding-left: .625rem;
    }

    .timeline {
        margin-left: 0;
        width: 100%;
        padding: 36px 20px 0 14px;
    }

        .timeline:before {
            width: 100px;
        }

    .timeline-wrap {
        display: block;
    }

    .timeline__head__info {
        width: 100%;
    }

    .timeline__head__legend {
        width: 190px;
        margin-top: 56px;
    }

    .timeline-wrap__steps__content .item {
        display: block;
        height: 220px;
        margin-top: 20px;
    }

    .timeline__head {
        display: block;
    }

    .timeline__title {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .timeline-wrap__item:after {
        display: none;
    }

    .timeline-wrap__steps__content .item:first-child:after {
        display: none;
    }

    .timeline .steps .step__legend {
        left: 0;
        width: 100%;
        padding-left: 24px;
        height: auto;
        top: 150px;
    }

    .timeline-wrap__item:not(:first-child) {
        width: 100%;
    }

        .timeline-wrap__item:not(:first-child) .item {
            padding-left: 10px;
            display: block;
            height: 220px;
            margin-top: 20px;
        }

    .timeline .steps .step__legend.active {
        display: block;
    }

    .timeline .steps .step__legend__title span {
        width: calc(100% - 58px);
    }

    .timeline .steps:after {
        content: '';
        display: block;
        position: absolute;
        width: calc(100% - 40px);
        height: 2px;
        background-color: #16264E;
        left: 24px;
        top: 120px;
    }

    .timeline .steps .timeline-icon.current {
        border: 2px solid #82B7D9;
    }

    .timeline .steps .timeline-icon.completed {
        border: 2px solid #16264E;
    }

    .timeline .steps .timeline-icon:after {
        content: '';
        display: block;
        background-image: none;
        height: 32px;
        width: 2px;
        background-color: #16264E;
        position: absolute;
        transform: none;
        left: 12px;
        top: 28px;
        transition: none;
        opacity: 0;
        visibility: hidden;
    }

    .timeline .steps .timeline-icon.current:after {
        background-color: #82B7D9;
    }

    .timeline .steps .timeline-icon.active:after {
        opacity: 1;
        visibility: visible;
    }

    .timeline .steps .timeline-icon.guidelines:after {
        background-color: #70399A;
        left: 11px;
        top: 27px;
    }

    .timeline .steps .timeline-icon.future:after {
        background-color: #BDBDBD;
        left: 11px;
        top: 27px;
    }

    .timeline .steps.current:after {
        background-color: #82B7D9;
    }

    .timeline .steps.future:after {
        background-color: #BDBDBD;
    }

    .timeline .steps .step {
        position: static;
    }

    .timeline-wrap__steps__content {
        display: block;
    }

        .timeline-wrap__steps__content .item {
            width: 100%;
            padding: 20px 0 0 10px;
        }

            .timeline-wrap__steps__content .item:first-child {
                padding-left: 10px;
            }

    .timeline .steps .step__legend:before,
    .timeline-wrap__item:first-child .timeline-wrap__steps__content .item:first-child:after {
        display: none;
    }

    .timeline-wrap__item:not(:first-child) .bar {
        display: none;
    }

    .timeline-wrap__item:first-child .steps {
        justify-content: flex-start;
        gap: 20px;
    }

    .timeline-wrap__item:first-child .timeline-wrap__steps__content .item:first-child {
        padding-left: 10px;
    }

    .timeline-pop,
    #poptranche {
        height: 580px;
        padding: 68px 32px 24px 34px;
        width: 90%;
    }

    .timeline-wrap__item .bar {
        height: 40px;
    }

    .pop__content__description {
        font-size: 16px;
        line-height: 24px;
    }

    .timeline-pop .stage-number {
        border-bottom: 1.5px solid #82B7D9;
        padding-bottom: 10px;
    }
}