/*----------
	education/training/
----------*/


.support-sequence > li {
	padding: 10px 10px 10px 45px;
	position: relative;
	background-color: #F1F6F6;
	font-weight: bold;
	font-size: 1.6rem;
	line-height: var(--line-height-s);
	counter-increment: chapter;
}
.support-sequence > li:not(:last-child)::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	bottom: 0;
	right: 50%;
	z-index: -1;
	background-color: #F1F6F6;
	-webkit-transform: rotate(45deg) translate(10px, -2px);
	transform: rotate(45deg) translate(10px, -2px);
}
.support-sequence > li::after {
	content: counter(chapter);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background-color: #2E3133;
	padding: 8px 11px;
	height: 100%;
}
.support-sequence > li > span {
	display: inline-block;
	margin-right: 16px;
}
.support-sequence > li + li {
	margin-top: 10px;
}
@media (min-width: 768px) {
	.support-sequence {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.support-sequence > li {
		padding: 40px 16px;
		flex: 0 0 215px;
		text-align: center;
		position: relative;
	}
	.support-sequence > li:not(:last-child)::before {
		width: 16px;
		height: 16px;
		bottom: 50%;
		right: 0;
	}
	.support-sequence > li::after {
		top: -10px;
		left: 10px;
		padding: 5px 19px;
		height: auto;
	}
	.support-sequence > li > span {
		display: block;
		margin-right: 0;
	}
	.support-sequence > li + li {
		margin-top: 0;
	}
}


.workshop-tab__wrapper {
	position: relative;
}
.workshop-tab__content {
	height: 0;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	position: relative;
	overflow: hidden;
	transition: opacity 0.4s, visibility 0.4s;
}
.workshop-tab__content.active {
	height: auto;
	visibility: visible;
	opacity: 1;
	pointer-events: all;
	overflow: visible;
}
