:root {
  --comp-temp-n1: #2f2f2f;
  --comp-temp-n2: #545454;
  --comp-temp-n7: #f4f4f4;
  --comp-temp-white: #fff;
  --comp-temp-container: 1320px;
  --comp-temp-pad-x: 60px;
  --comp-temp-radius-lg: 32px;
}
@media screen and (max-width: 1099px) {
  :root {
    --comp-temp-pad-x: 32px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --comp-temp-pad-x: 15px;
    --comp-temp-radius-lg: 24px;
  }
}
.comp-temp-cta-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 530px;
	overflow: hidden;
}

.comp-temp-cta-banner__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.comp-temp-cta-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

@media screen and (max-width: 1099px) {
	.comp-temp-cta-banner {
		flex-direction: column;
		min-height: auto;
	}
}

.comp-temp-cta-banner__image {
	position: relative;
	flex: 0 0 663px;
	max-width: 46%;
	height: 530px;
	overflow: hidden;
}

.comp-temp-cta-banner__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

@media screen and (max-width: 1099px) {
	.comp-temp-cta-banner__image {
		display: none;
	}
}

.comp-temp-cta-banner__copy {
	position: relative;
	flex: 1;
	padding: 100px 60px 100px 0;
	color: var(--comp-temp-white);
	width: 100%;
    max-width: 778px;
}

.comp-temp-cta-banner__copy p {
	margin: 0 0 14px;
	font-size: 18px;
	line-height: 28px;
    color: var(--comp-temp-white);
}

@media screen and (max-width: 767px) {
	.comp-temp-cta-banner__copy p {
		font-size: 16px;
		line-height: 24px;
		margin: 0 0 13px;
	}
}

.comp-temp-cta-banner__copy .comp-temp-btn {
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.comp-temp-cta-banner__copy .comp-temp-btn {
		width: 100%;
	}
}

@media screen and (max-width: 1099px) {
	.comp-temp-cta-banner__copy {
		padding: 80px var(--comp-temp-pad-x);
	}
}

@media screen and (max-width: 767px) {
	.comp-temp-cta-banner__copy {
		padding: 64px 16px;
	}
}

.comp-temp-cta-banner__title {
	margin: 0 0 24px;
	font-size: 38px;
	font-weight: 600;
	line-height: 44px;
    color: var(--comp-temp-white) !important;
}

@media screen and (max-width: 767px) {
	.comp-temp-cta-banner__title {
		font-size: 28px;
		line-height: 36px;
	}
}
.comp-temp-btn--white {
  background: var(--comp-temp-white);
  color: var(--comp-temp-n1) !important;
}
.comp-temp-btn--white:hover {
  background: var(--comp-temp-n7);
}