/*# sourceMappingURL=cta.css.map*/

.cta {
	background-color: #f8fbfa;
}

.cta__inner {
	box-shadow: 4px 4px 20px 0 rgba(146, 157, 173, .1);
}

@media (min-width:1024px) {
	.cta__inner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

.cta__wr-content {
	padding: 120px 16px 40px;
	position: relative;
	background-color: #fff;
}

@media (min-width:375px) {
	.cta__wr-content {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (min-width:1280px) {
	.cta__wr-content {
		padding: 160px 48px 64px 100px;
	}
}

.cta__wr-bg-ico {
	width: 90px;
	height: 90px;
	position: absolute;
	top: 0;
	left: 16px;
	border-radius: 0 0 50% 50%;
	background-color: #16807e;
}

@media (min-width:375px) {
	.cta__wr-bg-ico {
		left: 24px;
	}
}

@media (min-width:1280px) {
	.cta__wr-bg-ico {
		width: 120px;
		height: 120px;
		left: 100px;
	}
}

.cta__bg-ico {
	position: relative;
	overflow: hidden;
	width: 35%;
	height: 35%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cta__bg-ico img, .cta__bg-ico svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: contain;
	object-position: center;
}

.cta__img {
	position: relative;
	overflow: hidden;
	display: none;
	width: 100%;
	height: 100%;
}

.cta__img img, .cta__img svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
}

@media (min-width:1024px) {
	.cta__img {
		display: block;
	}
}

.cta__controls {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

@media (min-width:667px) {
	.cta__controls {
		flex-direction: row;
		gap: 32px;
	}
}
