.rok-cta {
	position: relative;
	width: 100%;
	background: #10151d;
	overflow: hidden;
	box-sizing: border-box;
}

.rok-cta-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	box-sizing: border-box;
}


/* Icon */

.rok-cta-icon {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ff7200;
	color: #fff;
	margin: 0 auto 18px;
	border-radius: 50%;
	box-sizing: border-box;
}

.rok-cta-icon i {
	line-height: 1;
}

.rok-cta-icon svg {
	display: block;
}


/* Content */

.rok-cta-content {
	flex: 1 1 auto;

	display: flex;
	flex-direction: column;

	gap: 2px;

	min-width: 0;
}

.rok-cta-eyebrow {
	margin: 0;

	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;

	color: #ff7200;

	text-transform: uppercase;
}

.rok-cta-title {
	margin: 0;

	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;

	color: #fff;
}

.rok-cta-description {
	margin: 0;

	font-size: 13px;
	line-height: 1.45;

	color: rgba(255, 255, 255, 0.9);
}


/* Button */

.rok-cta-button {
	flex: 0 0 auto;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 8px;

	text-decoration: none;

	background: #ff7200;
	color: #fff;

	font-size: 14px;
	font-weight: 700;
	line-height: 1;

	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

.rok-cta-button:hover {
	color: #fff;
	transform: translateY(-1px);
}

.rok-cta-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.rok-cta-button-icon svg {
	width: 14px;
	height: 14px;
}


/* Tablet */

@media (max-width: 1024px) {

	.rok-cta-inner {
		gap: 15px;
	}

	.rok-cta-title {
		font-size: 18px;
	}

	.rok-cta-description {
		font-size: 12px;
	}

}


/* Mobile */

@media (max-width: 767px) {

	.rok-cta-inner {
		flex-wrap: wrap;
	}

	.rok-cta-content {
		flex: 1 1 calc(100% - 75px);
	}

	.rok-cta-button {
		width: 100%;
		margin-top: 5px;
	}

}