.rok-about-us {
	width: 100%;
	padding: 90px 30px;
	background: #ffffff;
	box-sizing: border-box;
}

.rok-about-us *,
.rok-about-us *::before,
.rok-about-us *::after {
	box-sizing: border-box;
}

.rok-about-us__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}


/* =========================
   EYEBROW
========================= */

.rok-about-us__eyebrow-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 28px;
}

.rok-about-us__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1;
	color: #a7aeec;
	white-space: nowrap;
}

.rok-about-us__eyebrow-line {
	display: block;
	width: 54px;
	height: 1px;
	background: #a7aeec;
	opacity: .65;
}


/* =========================
   TITLE
========================= */

.rok-about-us__title {
	max-width: 1000px;
	margin: 0 auto 26px;
	text-align: center;
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -2.5px;
	color: #0b1b50;
}

.rok-about-us__highlight {
	position: relative;
	display: inline-block;
	color: #fe7d02;
	white-space: nowrap;
}

.rok-about-us__underline {
	position: absolute;
	left: 8%;
	right: 8%;
	bottom: -7px;
	height: 5px;
	border-radius: 20px;
	background: #fe7d02;
	transform: rotate(-1deg);
}


/* =========================
   DESCRIPTION
========================= */

.rok-about-us__description {
	max-width: 940px;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	line-height: 1.65;
	color: #52627a;
}

.rok-about-us__description p {
	margin: 0;
}

.rok-about-us__description strong {
	font-weight: 700;
	color: #263b62;
}


/* =========================
   FEATURES
========================= */

.rok-about-us__features {
	display: flex;
	align-items: stretch;
	justify-content: center;
	margin-top: 48px;
}

.rok-about-feature {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 28px;
}

.rok-about-feature__icon-wrap {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff0e5;
	margin-bottom: 14px;
	transition:
		transform .3s ease,
		box-shadow .3s ease;
}

.rok-about-feature__icon {
	font-size: 27px;
	line-height: 1;
	color: #fe7d02;
}

.rok-about-feature__icon svg {
	width: 27px;
	height: 27px;
	fill: currentColor;
}

.rok-about-feature:hover .rok-about-feature__icon-wrap {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(20, 35, 80, .10);
}

.rok-about-feature__title {
	max-width: 150px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #15375f;
}

.rok-about-feature__separator {
	width: 1px;
	min-height: 60px;
	align-self: center;
	background: #dfe2f4;
}


/* =========================
   BUTTON
========================= */

.rok-about-us__button-wrap {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.rok-about-us__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 17px 28px;
	min-width: 250px;
	border-radius: 14px;
	background: #fe7d02;
	color: #ffffff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(254, 125, 2, .18);
	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.rok-about-us__button:hover {
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 18px 35px rgba(254, 125, 2, .25);
}

.rok-about-us__button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .25s ease;
}

.rok-about-us__button-icon svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.rok-about-us__button:hover .rok-about-us__button-icon {
	transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 767px) {

	.rok-about-us {
		padding: 70px 20px;
	}

	.rok-about-us__eyebrow-wrap {
		gap: 10px;
		margin-bottom: 22px;
	}

	.rok-about-us__eyebrow {
		font-size: 10px;
		letter-spacing: 3px;
	}

	.rok-about-us__eyebrow-line {
		width: 30px;
	}

	.rok-about-us__title {
		font-size: 39px;
		letter-spacing: -1.5px;
		line-height: 1.12;
	}

	.rok-about-us__highlight {
		white-space: normal;
	}

	.rok-about-us__description {
		font-size: 16px;
		line-height: 1.6;
	}

	.rok-about-us__features {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px 10px;
		margin-top: 40px;
	}

	.rok-about-feature {
		padding: 0 10px;
	}

	.rok-about-feature__separator {
		display: none;
	}

	.rok-about-feature__icon-wrap {
		width: 58px;
		height: 58px;
	}

	.rok-about-feature__icon {
		font-size: 24px;
	}

	.rok-about-feature__title {
		font-size: 15px;
	}

	.rok-about-us__button-wrap {
		margin-top: 38px;
	}

	.rok-about-us__button {
		width: 100%;
		max-width: 300px;
	}

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

	.rok-about-us {
		padding: 55px 18px;
	}

	.rok-about-us__title {
		font-size: 34px;
	}

	.rok-about-us__description {
		font-size: 15px;
	}

	.rok-about-us__features {
		gap: 26px 5px;
	}

}