@charset "UTF-8";
.track-record:not(:first-child) {
		margin-top: var(--vert-padding);
}
.track-record .h2, .track-record .btns, .track-record ul, .track-record .line, .track-record .year {
		backface-visibility: hidden;
		transition-property: transform, opacity, width, height;
		transition-duration: 1.5s;
		transition-timing-function: var(--move-timing);
		transform: translate3d(0, 0, 0);
}
.track-record .line {
		transition-duration: 3s;
}
.track-record:not(.visible) .h2, .track-record:not(.visible) .btns, .track-record:not(.visible) ul {
		opacity: 0 !important;
		pointer-events: none !important;
		transform: translate3d(0, var(--distance), 0);
}
.track-record:not(.visible) .year {
		opacity: 0 !important;
		pointer-events: none !important;
}
.track-record .btns {
		transition-delay: 0.1s;
}
.track-record ul {
		transition-delay: 0.2s;
}
.track-record .year, .track-record .line {
		transition-delay: 0.2s;
}
.track-record ul, .track-record li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.track-record ul {
		display: flex;
		gap: 10px;
}
.track-record li {
		position: relative;
		container-type: inline-size;
		container-name: track-record-li;
}
.track-record .year {
		font-weight: normal;
		font-size: 20px;
		line-height: 1.1;
		color: var(--blackgrey);
}
.track-record .line {
		border-radius: 20px;
		white-space: nowrap;
		font-weight: normal;
		font-size: 16px;
		line-height: 1.1;
		color: rgba(0, 0, 0, 0.5);
		padding: 1.875em 1.25em;
}
.track-record .line strong {
		display: block;
		font-weight: 500;
		font-size: 2.25em;
		line-height: 0.722222em;
		color: var(--black);
		margin: 0.555em 0 0 0;
}
.track-record .line.accent {
		color: rgba(255, 255, 255, 0.5);
		background: var(--blue);
}
.track-record .line.accent strong {
		color: var(--white);
}
.track-record .line .small {
		font-size: 0.555em;
}
@container track-record-li (max-width: 150px) {
		.track-record .line {
				font-size: 15px;
		}
}
@container track-record-li (max-width: 140px) {
		.track-record .line {
				font-size: 14px;
		}
}
@container track-record-li (max-width: 130px) {
		.track-record .line {
				font-size: 13px;
		}
}
@container track-record-li (max-width: 120px) {
		.track-record .line {
				font-size: 12px;
		}
}
@media only screen and (min-width: 1024px) {
		.big-head + .track-record {
				margin-top: calc(var(--vert-padding) - 230px);
		}
}
@media only screen and (max-width: 1023px) {
		.track-record .h2 {
				font-size: 36px;
		}
}
@media only screen and (orientation: portrait), only screen and (orientation: landscape) and (max-width: 1023px) {
		.track-record .h2 {
				text-align: center;
				margin-bottom: 30px;
		}
		.track-record .btns {
				justify-content: center;
		}
		.track-record ul {
				margin-top: 40px;
				flex-direction: column;
				margin-left: auto;
				margin-right: auto;
				max-width: 500px;
		}
		.track-record li {
				padding-left: 80px;
				width: 100%;
				flex: 0 0 auto;
		}
		.track-record .year {
				position: absolute;
				top: 50%;
				left: 0;
				transform: translate3d(0, -50%, 0);
		}
		.track-record .line {
				height: 129px;
				min-width: 40px;
				background: var(--white);
				width: var(--size);
		}
		.track-record:not(.visible) .line {
				width: 0%;
		}
}
@media only screen and (orientation: landscape) and (min-width: 1024px) {
		.track-record {
				background: var(--white);
				border-radius: 20px;
				padding: 50px;
				display: flex;
				align-items: center;
				flex-wrap: wrap;
				gap: 50px;
				justify-content: space-between;
		}
		.track-record .h2, .track-record .btns {
				margin: 0;
		}
		.track-record .btns .btn {
				min-width: 170px;
		}
		.track-record ul {
				flex: 0 0 auto;
				width: 100%;
		}
		.track-record li {
				margin-bottom: 52px;
				flex: 1;
				max-height: 385px;
				min-height: 150px;
				height: 50vh;
		}
		.track-record .year {
				position: absolute;
				top: 100%;
				margin-top: 20px;
				left: 50%;
				transform: translate3d(-50%, 0, 0);
		}
		.track-record .line {
				min-height: 7em;
				height: var(--size);
				position: absolute;
				bottom: 0;
				left: 0;
				right: 0;
				background: var(--body);
		}
		.track-record:not(.visible) .line {
				height: 0%;
		}
}
@media only screen and (orientation: landscape) and (min-width: 1280px) {
		.track-record {
				padding: 60px;
				gap: 60px;
		}
}