section[data-module="about-story"] {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: linear-gradient(
		to bottom,
		#ffffff 0%,
		#ffffff 25%,
		#eeeeee 25%,
		#eeeeee 100%
	);
	font-family: "Assistant", sans-serif;
	padding: 90px 0 95px;
}

section[data-module="about-story"] .about-story-wrap {
	position: relative;
	width: calc(100% - 240px);
	max-width: 1500px;
	margin: 0 auto;
	z-index: 2;
}

section[data-module="about-story"] .about-story-head {
	position: relative;
	width: 100%;
	max-width: 820px;
	margin: 0 0 62px;
	background: #ffffff;
	padding: 0 0 34px 35px;
	box-sizing: border-box;
	opacity: 0;
	transform: translateY(35px);
	transition:
		opacity 0.85s ease,
		transform 0.85s ease;
}

section[data-module="about-story"].is-visible .about-story-head {
	opacity: 1;
	transform: translateY(0);
}

section[data-module="about-story"] .about-story-label {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	color: #111111;
	margin-bottom: 24px;
	z-index: 1;
}

section[data-module="about-story"] .about-story-label::before {
	content: "";
	width: 44px;
	height: 44px;
	background: #f1b209;
	display: inline-block;
	margin-right: -21px;
	z-index: 1;
	transform: scaleX(0);
	transform-origin: left center;
}

section[data-module="about-story"].is-visible .about-story-label::before {
	animation: aboutStoryBoxReveal 0.55s ease 0.25s forwards;
}

section[data-module="about-story"] .about-story-label span {
	position: relative;
	z-index: 2;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	color: #111111;
}

@keyframes aboutStoryBoxReveal {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

section[data-module="about-story"] .about-story-title {
	margin: 0 0 24px;
	font-size: 50px;
	font-weight: 700;
	line-height: 1.08;
	color: #000000;
	max-width: 820px;
}

section[data-module="about-story"] .about-story-description {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	color: #111111;
	max-width: 720px;
}

section[data-module="about-story"] .about-story-slider-wrap {
	position: relative;
	width: 100%;
	padding-top: 4px;
}

section[data-module="about-story"] .about-story-track {
	position: relative;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(360px, 420px);
	gap: 28px;
	padding: 8px 0 22px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	cursor: grab;
	counter-reset: aboutStory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	user-select: none;
	touch-action: pan-x;
}

section[data-module="about-story"] .about-story-track::-webkit-scrollbar {
	display: none;
}

section[data-module="about-story"] .about-story-track.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
}

section[data-module="about-story"] .about-story-track.is-dragging * {
	pointer-events: none;
}

section[data-module="about-story"] .about-story-item {
	position: relative;
	scroll-snap-align: start;
	counter-increment: aboutStory;
	background: #ffffff;
	min-height: 360px;
	padding: 72px 34px 38px;
	box-sizing: border-box;
	border: 1px solid rgba(2, 47, 108, 0.1);
	border-bottom: 5px solid #0146a6;
	overflow: hidden;
	opacity: 0;
	transform: translateY(35px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

section[data-module="about-story"].is-visible .about-story-item {
	opacity: 1;
	transform: translateY(0);
}

section[data-module="about-story"].is-visible .about-story-item:nth-child(1) {
	transition-delay: 0.1s;
}

section[data-module="about-story"].is-visible .about-story-item:nth-child(2) {
	transition-delay: 0.18s;
}

section[data-module="about-story"].is-visible .about-story-item:nth-child(3) {
	transition-delay: 0.26s;
}

section[data-module="about-story"].is-visible .about-story-item:nth-child(4) {
	transition-delay: 0.34s;
}

section[data-module="about-story"].is-visible .about-story-item:nth-child(5) {
	transition-delay: 0.42s;
}

section[data-module="about-story"].is-visible .about-story-item:nth-child(6) {
	transition-delay: 0.5s;
}

section[data-module="about-story"].is-visible .about-story-item:nth-child(7) {
	transition-delay: 0.58s;
}

section[data-module="about-story"] .about-story-item:hover {
	box-shadow: 0 18px 38px rgba(2, 47, 108, 0.08);
	border-color: rgba(1, 70, 166, 0.22);
}

section[data-module="about-story"] .about-story-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1b209;
	color: #022f6c;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

section[data-module="about-story"] .about-story-number::before {
	content: counter(aboutStory, decimal-leading-zero);
}

section[data-module="about-story"] .about-story-content h3 {
	margin: 0 0 18px;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.2;
	color: #000000;
}

section[data-module="about-story"] .about-story-content p {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	color: #111111;
}

section[data-module="about-story"] .about-story-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 28px 0 0;
}

section[data-module="about-story"] .about-story-pagination button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	background: rgba(2, 47, 108, 0.18);
	cursor: pointer;
	transition:
		width 0.3s ease,
		background 0.3s ease,
		transform 0.3s ease;
}

section[data-module="about-story"] .about-story-pagination button:hover {
	background: rgba(1, 70, 166, 0.45);
	transform: scale(1.08);
}

section[data-module="about-story"] .about-story-pagination button.is-active {
	width: 34px;
	background: #f1b209;
}

.fl-builder-edit section[data-module="about-story"] .about-story-head,
.fl-builder-edit section[data-module="about-story"] .about-story-item,
.fl-builder-is-showing-toolbar section[data-module="about-story"] .about-story-head,
.fl-builder-is-showing-toolbar section[data-module="about-story"] .about-story-item {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.fl-builder-edit section[data-module="about-story"] .about-story-label::before,
.fl-builder-is-showing-toolbar section[data-module="about-story"] .about-story-label::before {
	transform: scaleX(1) !important;
	animation: none !important;
}

@media (max-width: 1399px) {
	section[data-module="about-story"] .about-story-wrap {
		width: calc(100% - 120px);
	}

	section[data-module="about-story"] {
		background: linear-gradient(
			to bottom,
			#ffffff 0%,
			#ffffff 30%,
			#eeeeee 30%,
			#eeeeee 100%
		);
	}
}

@media (max-width: 1199px) {
	section[data-module="about-story"] {
		padding: 75px 0 85px;
		background: linear-gradient(
			to bottom,
			#ffffff 0%,
			#ffffff 29%,
			#eeeeee 29%,
			#eeeeee 100%
		);
	}

	section[data-module="about-story"] .about-story-wrap {
		width: calc(100% - 60px);
	}

	section[data-module="about-story"] .about-story-head {
		max-width: 760px;
		margin-bottom: 52px;
		padding-bottom: 30px;
	}

	section[data-module="about-story"] .about-story-title {
		font-size: 42px;
	}

	section[data-module="about-story"] .about-story-track {
		grid-auto-columns: minmax(330px, 390px);
		gap: 24px;
	}

	section[data-module="about-story"] .about-story-item {
		min-height: 340px;
		padding: 68px 30px 34px;
	}

	section[data-module="about-story"] .about-story-content h3 {
		font-size: 24px;
	}

	section[data-module="about-story"] .about-story-content p {
		font-size: 17px;
	}
}

@media (max-width: 991px) {
	section[data-module="about-story"] {
		background: linear-gradient(
			to bottom,
			#ffffff 0%,
			#ffffff 32%,
			#eeeeee 32%,
			#eeeeee 100%
		);
		padding: 65px 0 80px;
	}

	section[data-module="about-story"] .about-story-wrap {
		width: calc(100% - 60px);
	}

	section[data-module="about-story"] .about-story-head {
		max-width: 100%;
		margin-bottom: 44px;
		padding-bottom: 28px;
	}

	section[data-module="about-story"] .about-story-track {
		grid-auto-columns: minmax(280px, 82%);
		gap: 20px;
	}
}

@media (max-width: 767px) {
	section[data-module="about-story"] {
		background: #eeeeee;
		padding: 50px 0 60px;
	}

	section[data-module="about-story"] .about-story-wrap {
		width: calc(100% - 44px);
	}

	section[data-module="about-story"] .about-story-head {
		margin-bottom: 36px;
		padding-bottom: 24px;
	}

	section[data-module="about-story"] .about-story-label,
	section[data-module="about-story"] .about-story-label span {
		font-size: 18px;
	}

	section[data-module="about-story"] .about-story-label {
		margin-bottom: 20px;
	}

	section[data-module="about-story"] .about-story-label::before {
		width: 42px;
		height: 42px;
		margin-right: -20px;
	}

	section[data-module="about-story"] .about-story-title {
		font-size: 34px;
		line-height: 1.12;
		margin-bottom: 20px;
	}

	section[data-module="about-story"] .about-story-description {
		font-size: 16px;
		line-height: 1.5;
	}

	section[data-module="about-story"] .about-story-track {
		grid-auto-columns: 88%;
		gap: 18px;
	}

	section[data-module="about-story"] .about-story-item {
		min-height: 310px;
		padding: 62px 24px 30px;
	}

	section[data-module="about-story"] .about-story-number {
		width: 54px;
		height: 54px;
		font-size: 20px;
	}

	section[data-module="about-story"] .about-story-content h3 {
		font-size: 21px;
		margin-bottom: 14px;
	}

	section[data-module="about-story"] .about-story-content p {
		font-size: 15px;
		line-height: 1.55;
	}

	section[data-module="about-story"] .about-story-pagination {
		gap: 8px;
		margin-top: 22px;
	}

	section[data-module="about-story"] .about-story-pagination button {
		width: 9px;
		height: 9px;
	}

	section[data-module="about-story"] .about-story-pagination button.is-active {
		width: 26px;
	}
}

@media (max-width: 480px) {
	section[data-module="about-story"] {
		background: #eeeeee;
		padding: 50px 0 60px;
	}

	section[data-module="about-story"] .about-story-wrap {
		width: calc(100% - 28px);
	}

	section[data-module="about-story"] .about-story-head {
		margin-bottom: 32px;
		padding-bottom: 22px;
	}

	section[data-module="about-story"] .about-story-title {
		font-size: 31px;
	}

	section[data-module="about-story"] .about-story-track {
		grid-auto-columns: calc(100% - 18px);
	}

	section[data-module="about-story"] .about-story-item {
		min-height: 300px;
		padding: 58px 20px 28px;
	}
}