/*=============================
	CTA One 
===============================*/
.cta-one {
	position: relative;
	display: block;
	margin: 0 40px 0;
}

.cta-one .section__bg-color {
	background-color: var(--thm-primary-2);
}

.cta-one__inner {
	position: relative;
	display: block;
	text-align: center;
	padding: 59px 0 100px;
}

.cta-one__title {
	font-size: 56px;
	font-weight: 600;
	line-height: 64px;
}

.cta-one__btn-and-call-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 39px;
}

.cta-one__btn-box {
	position: relative;
	display: block;
}

.cta-one__btn {
	background-color: var(--thm-white);
	color: var(--thm-black);
}

.cta-one__btn:hover {
	color: var(--thm-white);
}

.cta-one__btn::before {
	background-color: var(--thm-black);
}

.cta-one__btn-and-call-box>span {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #1F2034;
	margin-left: 10px;
	margin-right: 10px;
}

.cta-one__call-box {
	position: relative;
	display: flex;
	align-items: center;
}

.cta-one__call-box a>span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background-color: #16232C;
	border-radius: 50%;
	font-size: 16px;
	color: var(--thm-primary-2);
	margin-right: 10px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.cta-one__call-box a {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	color: #16232C;
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #16232C;
	border-radius: 25px;
	padding: 7px 7px 7px;
	padding-right: 35px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	overflow: hidden;
	z-index: 1;
}

.cta-one__call-box a:hover {
	border: 1px solid var(--thm-white);
}

.cta-one__call-box a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 25px;
	background-color: var(--thm-white);
	transform: perspective(200px) scaleX(0.1) rotateX(90deg) translateZ(-10px);
	transform-origin: bottom center;
	transition: transform 0.4s linear, transform 0.4s linear;
	z-index: -1;
}

.cta-one__call-box a:hover::before {
	transform: perspective(200px) scaleX(1.05) rotateX(0deg) translateZ(0);
	transition: transform 0.4s linear, transform 0.4s linear;
}


/*=============================
	CTA Two
===============================*/
.cta-two {
	position: relative;
	display: block;
	padding: 96px 0 96px;
	z-index: 1;
}

.cta-two__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.cta-two__bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(var(--thm-primary-2-rgb), .9);
	z-index: -1;
}

.cta-two__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cta-two__title {
	font-size: 56px;
	font-weight: 600;
	line-height: 64px;
}

.cta-two__btn-box {
	position: relative;
	display: block;
}

.cta-two__btn {
	background-color: var(--thm-white);
	color: var(--thm-black);
}

.cta-two__btn:hover {
	color: var(--thm-white);
}

.cta-two__btn::before {
	background-color: var(--thm-black);
}



/*=============================
	End
===============================*/