section[data-module="home-cta"] {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	font-family: "Assistant", sans-serif;
	padding: 60px 0 70px;
}

section[data-module="home-cta"] .home-cta-wrap {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 53.2% 40.4% 6.4%;
	align-items: stretch;
	min-height: 410px;
}

section[data-module="home-cta"] .home-cta-image {
	position: relative;
	min-height: 410px;
	overflow: hidden;
	opacity: 0;
	transform: translateX(-45px);
	transition:
		opacity 0.85s ease,
		transform 0.85s ease;
}

section[data-module="home-cta"].is-visible .home-cta-image {
	opacity: 1;
	transform: translateX(0);
}

section[data-module="home-cta"] .home-cta-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

section[data-module="home-cta"] .home-cta-content {
	position: relative;
	background: #ffffff;
	padding: 45px 78px 48px 78px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	transform: translateX(45px);
	transition:
		opacity 0.85s ease 0.14s,
		transform 0.85s ease 0.14s;
}

section[data-module="home-cta"].is-visible .home-cta-content {
	opacity: 1;
	transform: translateX(0);
}

section[data-module="home-cta"] .home-cta-blue-block {
	position: relative;
	background: #013989;
	min-height: 410px;
	opacity: 0;
	transform: translateX(35px);
	transition:
		opacity 0.85s ease 0.24s,
		transform 0.85s ease 0.24s;
}

section[data-module="home-cta"].is-visible .home-cta-blue-block {
	opacity: 1;
	transform: translateX(0);
}

/* label */
section[data-module="home-cta"] .home-cta-label {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	color: #111111;
	margin-bottom: 26px;
}

section[data-module="home-cta"] .home-cta-label-box {
	width: 50px;
	height: 48px;
	background: #f1b209;
	display: inline-block;
	margin-right: -25px;
	z-index: 1;
	transform: scaleX(0);
	transform-origin: left center;
}

section[data-module="home-cta"].is-visible .home-cta-label-box {
	animation: homeCtaBoxReveal 0.55s ease 0.35s forwards;
}

section[data-module="home-cta"] .home-cta-label-text {
	position: relative;
	z-index: 2;
}

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

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

/* text */
section[data-module="home-cta"] .home-cta-title {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.08;
	color: #000000;
	margin: 0 0 26px;
}

section[data-module="home-cta"] .home-cta-desc {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	color: #111111;
	margin: 0 0 38px;
	max-width: 620px;
}

/* button */
section[data-module="home-cta"] .home-cta-btn {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	justify-content: center;
	width: fit-content;
	min-width: 326px;
	height: 60px;
	text-decoration: none;
	overflow: hidden;
	color: #111111;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	background: #eeeeee;
	transition: color 0.35s ease;
}

section[data-module="home-cta"] .home-cta-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #f1b209;
	z-index: 1;
	transition: left 0.45s ease;
}

section[data-module="home-cta"] .home-cta-btn:hover::before {
	left: 0;
}

section[data-module="home-cta"] .home-cta-btn:hover {
	color: #ffffff;
}

section[data-module="home-cta"] .home-cta-btn-text {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 42px;
	white-space: nowrap;
}

section[data-module="home-cta"] .home-cta-btn-icon {
	position: relative;
	z-index: 2;
	width: 92px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1b209;
	overflow: hidden;
}

section[data-module="home-cta"] .home-cta-btn-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.35) 45%,
		rgba(255, 255, 255, 0) 80%
	);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}

section[data-module="home-cta"] .home-cta-btn:hover .home-cta-btn-icon::before {
	transform: translateX(120%);
}

section[data-module="home-cta"] .home-cta-btn-icon img {
	position: relative;
	z-index: 2;
	width: 18px;
	height: auto;
	display: block;
	transition: transform 0.35s ease;
}

section[data-module="home-cta"] .home-cta-btn:hover .home-cta-btn-icon img {
	transform: translateX(5px);
}

/* builder edit mode fix */
.fl-builder-edit section[data-module="home-cta"] .home-cta-image,
.fl-builder-edit section[data-module="home-cta"] .home-cta-content,
.fl-builder-edit section[data-module="home-cta"] .home-cta-blue-block,
.fl-builder-is-showing-toolbar section[data-module="home-cta"] .home-cta-image,
.fl-builder-is-showing-toolbar section[data-module="home-cta"] .home-cta-content,
.fl-builder-is-showing-toolbar section[data-module="home-cta"] .home-cta-blue-block {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
	animation: none !important;
}

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

/* responsive */
@media (max-width: 1399px) {
	section[data-module="home-cta"] .home-cta-wrap {
		grid-template-columns: 52% 41.5% 6.5%;
	}

	section[data-module="home-cta"] .home-cta-content {
		padding: 42px 58px;
	}

	section[data-module="home-cta"] .home-cta-title {
		font-size: 44px;
	}
}

@media (max-width: 1199px) {
	section[data-module="home-cta"] .home-cta-wrap {
		grid-template-columns: 50% 43% 7%;
		min-height: 380px;
	}

	section[data-module="home-cta"] .home-cta-image,
	section[data-module="home-cta"] .home-cta-blue-block {
		min-height: 380px;
	}

	section[data-module="home-cta"] .home-cta-content {
		padding: 40px 42px;
	}

	section[data-module="home-cta"] .home-cta-title {
		font-size: 40px;
	}

	section[data-module="home-cta"] .home-cta-desc {
		font-size: 17px;
		margin-bottom: 32px;
	}
}

@media (max-width: 991px) {
	section[data-module="home-cta"] {
		padding: 55px 0 65px;
	}

	section[data-module="home-cta"] .home-cta-wrap {
		width: calc(100% - 60px);
		margin: 0 auto;
		grid-template-columns: 1fr;
		min-height: auto;
	}

	section[data-module="home-cta"] .home-cta-image {
		min-height: 360px;
		transform: translateY(35px);
	}

	section[data-module="home-cta"] .home-cta-content {
		padding: 46px 42px;
		transform: translateY(35px);
	}

	section[data-module="home-cta"] .home-cta-blue-block {
		display: none;
	}

	section[data-module="home-cta"].is-visible .home-cta-image,
	section[data-module="home-cta"].is-visible .home-cta-content {
		transform: translateY(0);
	}

	section[data-module="home-cta"] .home-cta-title {
		font-size: 38px;
	}

	section[data-module="home-cta"] .home-cta-desc {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	section[data-module="home-cta"] {
		padding: 48px 0 55px;
	}

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

	section[data-module="home-cta"] .home-cta-image {
		min-height: 280px;
	}

	section[data-module="home-cta"] .home-cta-content {
		padding: 38px 28px;
	}

	section[data-module="home-cta"] .home-cta-label {
		font-size: 18px;
		margin-bottom: 22px;
	}

	section[data-module="home-cta"] .home-cta-label-box {
		width: 42px;
		height: 42px;
		margin-right: -20px;
	}

	section[data-module="home-cta"] .home-cta-title {
		font-size: 33px;
		line-height: 1.12;
		margin-bottom: 20px;
	}

	section[data-module="home-cta"] .home-cta-desc {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 30px;
	}

	section[data-module="home-cta"] .home-cta-btn {
		min-width: 275px;
		height: 56px;
		font-size: 18px;
	}

	section[data-module="home-cta"] .home-cta-btn-text {
		padding: 0 28px;
	}

	section[data-module="home-cta"] .home-cta-btn-icon {
		width: 76px;
		height: 56px;
	}
}

@media (max-width: 480px) {
	section[data-module="home-cta"] .home-cta-wrap {
		width: calc(100% - 28px);
	}

	section[data-module="home-cta"] .home-cta-image {
		min-height: 240px;
	}

	section[data-module="home-cta"] .home-cta-content {
		padding: 34px 22px;
	}

	section[data-module="home-cta"] .home-cta-title {
		font-size: 30px;
	}

	section[data-module="home-cta"] .home-cta-btn {
		min-width: 245px;
		height: 54px;
		font-size: 16px;
	}

	section[data-module="home-cta"] .home-cta-btn-icon {
		width: 68px;
		height: 54px;
	}

	section[data-module="home-cta"] .home-cta-btn-icon img {
		width: 16px;
	}
}