.timeline-intro {
	padding: 3rem 0;
}
.timeline-intro .timeline-intro__body {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 2rem;
}
.timeline-intro .timeline-intro__body .timeline-intro__body-description .timeline-btn {
	display: none;
}
.timeline-intro .timeline-intro__body .timeline-intro__body-timeline {
	position: relative;
	z-index: 0;
}
.timeline-intro .timeline-intro__body .timeline-intro__body-timeline:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event {
	display: grid;
	grid-template-columns: 60px 1fr;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 1rem;
	row-gap: 1rem;
	margin-bottom: 1rem;
}
.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event .timeline-event__image {
	grid-row: 1 / 2;
	position: relative;
	width: 100%;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	z-index: -1;
}
.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event .timeline-event__image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event h3 {
	grid-column: 2 / 3;
	color: var(--secondary);
	margin: 0;
}
.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event .timeline-event__content {
	grid-column: 1 / 3;
	grid-row: 2 / 3;
}
.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-btn {
	position: relative;
	z-index: 1;
}
@media (min-width: 762px) {
	.timeline-intro .timeline-intro__body {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto 1fr;
		column-gap: 3rem;
		row-gap: 0;
	}
	.timeline-intro .timeline-intro__body .timeline-intro__body-description {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	.timeline-intro .timeline-intro__body .timeline-intro__body-timeline {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
	.timeline-intro .timeline-intro__body .timeline-intro__body-description .timeline-btn {
		display: block;
	}
}
@media (min-width: 992px) {
	.timeline-intro .timeline-intro__body {
		grid-template-columns: 1fr 2fr;
	}
	.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event {
		grid-template-columns: 180px 1fr;
		column-gap: 2rem;
		align-items: flex-start;
		margin-bottom: 1.5rem;
	}
	.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event .timeline-event__image {
		grid-row: 1 / 3;
		height: 180px;
	}
	.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event h3 {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	.timeline-intro .timeline-intro__body .timeline-intro__body-timeline .timeline-event .timeline-event__content {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
}



{# Timeline Lightbox Styles #}
.timeline-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 100;
}
.timeline-modal:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary);
	opacity: .95;
	z-index: -1;
}
.timeline-modal > .container {
	height: 100%;
}
.timeline-modal .modal__body {
	position: relative;
	height: 100%;
}
.timeline-modal .modal__body .modal__content {
	position: relative;
	height: calc(100% - 6rem);
	margin: 3rem 0;
	overflow: scroll;
	background: #fff;
}
.timeline-modal .modal__body .modal__content .modal__close {
	position: absolute;
	font-size: 1.5rem;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1;
}
.timeline-modal .modal__body .modal__content .modal-timeline {
	position: relative;
	overflow: hidden;
}
.timeline-modal .modal__body .modal__content .modal-timeline:before {
	content: '';
	position: absolute;
	top: 20%;
	left: 0;
	transform: translateX(-40%);
	width: 700px;
	height: 700px;
	background-image: url(https://f.hubspotusercontent10.net/hubfs/19948914/bg-blueprint_squre.png);
	background-size: cover;
	border-radius: 50%;
	opacity: .8;
}
.timeline-modal .modal__body .modal__content .modal-timeline:after {
	content: '';
	position: absolute;
	top: 70%;
	right: 0;
	transform: translateX(40%);
	width: 700px;
	height: 700px;
	background-image: url(https://f.hubspotusercontent10.net/hubfs/19948914/bg-blueprint_squre.png);
	background-size: cover;
	border-radius: 50%;
	opacity: .8;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline-header {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline-header:before {
	content: '';
	position: absolute;
	top: 40%;
	left: 0;
	width: 100%;
	height: 60%;
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline-header h2 {
	color: #fff;
	text-align: center;
	padding: 7rem 40px 12rem;
	margin: 0;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline {
	position: relative;
	max-width: 800px;
	margin: -4rem auto 0;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body {
	display: grid;
	grid-template-columns: 1fr 3px 1fr;
	column-gap: 4rem;
	row-gap: 3rem;
	padding: 2rem 20px;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .progress-bar {
	position: relative;
	grid-column: 2 / 3;
	overflow: hidden;
	transform: translateY(-2rem);
	height: calc(100% + 2rem);
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .progress-bar .progress-default {
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: calc(100% + 11rem);
	background: #D6D9DA;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .progress-bar .progress-indicator {
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 0;
	background: var(--secondary);
	z-index: 1;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width {
	position: relative;
	text-align: center;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width h3 {
	color: var(--secondary);
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width .timeline-event__description {
	position: relative;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width .timeline-event__description:before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 3px solid #D6D9DA;
	transition: all ease-in-out .3s;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width .timeline-event__description.in-view:before {
	border: 3px solid var(--secondary);
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.top {
	padding: 0 0 1.5rem;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.top .timeline-event__description:before {
	bottom: -2.5rem;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.bottom {
	padding: 0 0 4rem;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.bottom .timeline-event__description:before {
	top: -6.5rem;
	background: #fff;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width .timeline-event__description .timeline-indicator {
	display: none;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body h3 {
	transition: all ease-in-out .3s;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body h3.in-view {
	color: var(--secondary);
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width .timeline-event__description .timeline-event__image {
	display: none;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description {
	position: relative;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description .timeline-event__image {
	position: absolute;
	top: 50%;
	transform: translate(110%, -50%);
	width: 240px;
	height: 240px;
	border-radius: 50%;
	overflow: hidden;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol .timeline-event__image {
	left: 0;
	transform: translate(-110%, -50%);
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol .timeline-event__image {
	right: 0;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description .timeline-event__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 3px solid #D6D9DA;
	transition: all ease-in-out .3s;
	transition-delay: .3s; 
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.in-view:before {
	border: 3px solid var(--secondary);
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol:before {
	right: -2rem;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol:before {
	left: -2rem;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description .timeline-indicator,
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description .timeline-indicator:after {
	content: '';
	position: absolute;
	top: 9px;
	width: 2.1rem;
	height: 3px;
	background: #D6D9DA;
	transition: all ease-in-out .3s;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description .timeline-indicator:after {
	top: 0;
	left: 0;
	width: 0;
	background: var(--secondary);
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.in-view .timeline-indicator:after{
	width: 100%;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol .timeline-indicator {
	right: -4rem;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol .timeline-indicator {
	left: -4rem;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body h3.leftcol,
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol {
	text-align: right;
}
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description p:last-child {
	margin: 0;
}

@media (max-width: 576px) {
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body {
		grid-template-columns: 30px 1fr;
		column-gap: 2rem;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .progress-bar {
		grid-column: 1 / 2;
		transform: translateY(1rem);
		height: calc(100% + 3rem);
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width .timeline-event__description {
		text-align: left;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width .timeline-event__description .timeline-indicator {
		display: block;
		top: -45px;
		left: -3.9rem;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.top .timeline-event__description:before,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.bottom .timeline-event__description:before {
		top: -53px;
		left: -1.3rem;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body h3,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description {
		grid-column: 2 / 3!important;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body h3.leftcol,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body h3.rightcol,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol { 
		text-align: left!important;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol { 
		padding-top: 3rem;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol:before,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol:before {
		top: 6px;
		right: inherit;
		left: -2rem;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol .timeline-indicator,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol .timeline-indicator {
		top: 14px;
		left: -3.8rem!important;
		width: 2rem!important;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description .timeline-event__image {
		display: none!important;
	}
}
@media (min-width: 992px) {
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.bottom .timeline-event__description:before {
		top: -7.5rem;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .progress-bar .progress-default {
		height: calc(100% + 11rem);
	}
}


.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description .hs_cos_wrapper {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: 0.3s ease;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description .hs_cos_wrapper.showItem {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description span.clickaction {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #D6D9DA;
    transition: all ease-in-out .3s;
    transition-delay: .3s;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary);
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width .timeline-event__description span.clickaction {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    bottom: -2.5rem;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #D6D9DA;
    transition: all ease-in-out .3s;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol span.clickaction {
    left: -2rem;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol span.clickaction {
    right: -2rem;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.in-view span.clickaction {
    border: 3px solid var(--secondary);
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description span.clickaction {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description span.clickaction.minus {
  display: none;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description span.clickaction.plus.showMinus {
  display: none;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description span.clickaction.minus.showMinus,
.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description span.clickaction.plus {
  display: flex;
}

.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.in-view:last-child .hs_cos_wrapper {
  opacity: 1;
  visibility: visible;
  height: auto;
}


@media (max-width: 576px) {
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.top .timeline-event__description span.clickaction,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.bottom .timeline-event__description span.clickaction {
		top: -53px;
		left: -1.3rem;
	}
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.leftcol span.clickaction,
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__description.rightcol span.clickaction {
		top: 6px;
		right: inherit;
		left: -2rem;
	}
}
@media (min-width: 992px) {
	.timeline-modal .modal__body .modal__content .modal-timeline .timeline .timeline-body .timeline-event__full-width.bottom .timeline-event__description span.clickaction {
		top: -7.5rem;
	}
}
