:root {
	--primary-color: #d32f2f;
	--primary-rgb: 0, 0, 0;
	--primary-hover: #b71c1c;

	--secondary-color: #c89263;
	--secondary-rgb: 200, 146, 99;
	--secondary-hover: #c28b51;
}

.z-index-0 {
	z-index: 0;
}

.z-index-1 {
	z-index: 1;
}

.z-index-2 {
	z-index: 2;
}

.page-wrapper .arrow-link {
	display: inline-flex;
	padding: 15px 25px;
	border: none;
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	color: #fff;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	white-space: nowrap;
	cursor: pointer;
	overflow: hidden;
	width: max-content;
	transition: background-color 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
	color 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease,
	transform 0.2s ease;
}

.page-wrapper .arrow-link::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg,
	transparent,
	rgba(255, 255, 255, 0.4),
	transparent);
	top: -100%;
	left: -100%;
	transition: all 0.5s ease;
}

.page-wrapper .arrow-link:hover {
	color: #fff;
}

.page-wrapper .arrow-link:hover::before {
	top: 100%;
	left: 100%;
}

.page-wrapper .section-hero {
	height: 75vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #f0f4ff;
}

.page-wrapper .section-hero__bg {
	position: absolute;
	left: 45%;
	top: 100px;
	width: 60%;
	height: 100%;
}

.page-wrapper .section-heading-v2 {
	margin-bottom: 30px;
	position: relative;
}

.page-wrapper .section-heading-v2 .ripple-shape {
	position: absolute;
	top: -50px;
	left: -50px;
	z-index: 1;
	height: 100px;
	width: 100px;
}

.page-wrapper .section-heading-v2 .ripple-1,
.page-wrapper .section-heading-v2 .ripple-2,
.page-wrapper .section-heading-v2 .ripple-3,
.page-wrapper .section-heading-v2 .ripple-4,
.page-wrapper .section-heading-v2 .ripple-5,
.page-wrapper .section-heading-v2 .ripple-6 {
	border-color: rgb(20 29 56 / 0.3);
}

.page-wrapper .ripple-1,
.page-wrapper .ripple-2,
.page-wrapper .ripple-3,
.page-wrapper .ripple-4,
.page-wrapper .ripple-5,
.page-wrapper .ripple-6 {
	height: 100px;
	width: 100px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #fff0;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	-webkit-animation: heroripple 8s linear infinite;
	animation: heroripple 8s linear infinite;
	animation-fill-mode: both;
}

.page-wrapper .ripple-1 {
	-webkit-animation-delay: 0;
	animation-delay: 0;
}

.page-wrapper .ripple-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.page-wrapper .ripple-3 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.page-wrapper .ripple-4 {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

.page-wrapper .ripple-5 {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}

.page-wrapper .ripple-6 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

@-webkit-keyframes heroripple {
	0% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0.2;
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(4);
		transform: scale(4);
	}
}

@keyframes heroripple {
	0% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0.2;
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(4);
		transform: scale(4);
	}
}

.page-wrapper .triangle-1,
.page-wrapper .triangle-2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 70%;
	height: 82%;
	background-color: #e1e7f9;
	opacity: 0.3;
	-webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	z-index: 0;
}

.page-wrapper .triangle-2 {
	width: calc(70% - 140px);
	height: calc(82% - 90px);
	background-color: #c0cdf1;
	opacity: 0.5;
}

.page-wrapper .section-heading-v2 .heading-subtitle-v2 {
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--primary-color);
	font-size: 1em;
	font-weight: 600;
	margin-bottom: 3px;
}

.page-wrapper .section-heading-v2 .heading-title-v2 {
	font-size: 4em;
	font-weight: 800;
	text-transform: capitalize;
	line-height: inherit;
	color: #000;
}

/* section-plan */

.page-wrapper .section-plans {
	position: relative;
	overflow: hidden;
}

.page-wrapper .section-heading .heading-subtitle {
	font-size: 5em;
	font-weight: 800;
	text-transform: uppercase;
	background-clip: text;
	opacity: 0.1;
	margin: 0 0 -0.75em -0.25em;
	-webkit-text-fill-color: #fff0;
	background-image: -webkit-linear-gradient(top,
	var(--primary-color) 0%,
	#fff0 75.54%);
}

.page-wrapper .section-heading .heading-title {
	font-weight: 600;
	font-size: 2.6em;
	color: var(--primary-color);
	display: inline-block;
}

.page-wrapper .section-heading .heading-desc {
	font-size: 1.2em;
	margin-top: 1em;
}

.page-wrapper .section-plans__decor {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.page-wrapper .section-plans .custom-col:nth-child(odd) {
	transform: translateY(50px);
	margin-bottom: 55px;
}

.page-wrapper .popular-badge {
	position: absolute;
	top: -3%;
	display: inline-block;
	background-color: #f5c400;
	color: #000;
	font-weight: bold;
	font-size: 14px;
	padding: 3px 10px;
	border-radius: 12px;
	margin-bottom: 10px;
}

.page-wrapper .card-plan {
	position: relative;
	border-radius: 30px;
	color: #000;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.page-wrapper .card-plan__header {
	padding: 30px 30px 15px;
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	color: #fff;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

.page-wrapper .card-plan__name {
	font-size: 1.2em;
	font-weight: 500;
	padding: 3px 15px;
	border-radius: 20px;
	margin-bottom: 10px;
	background: linear-gradient(135deg, #f5c400, #f59e00);
	color: #000;
	display: inline-block;
}

.page-wrapper .card-plan__price .plan_price {
	margin-bottom: 0;
	font-size: 1.9em;
	font-weight: 800;
}

.page-wrapper .card-plan__price .unit {
	font-weight: 800;
	font-size: 1.2em;
}

.page-wrapper .card-plan__line {
	height: 1px;
	width: 30%;
	display: inline-flex;
	background-color: rgba(176, 171, 171, 0.28);
}

.page-wrapper .card-plan__desc {
	font-style: italic;
}

.page-wrapper .card-plan .card-body {
	padding: 10px 30px 30px 30px;
	font-size: 1em;
	color: #000;
}

.page-wrapper .card-plan__text {
	margin-bottom: 1.5rem;
}

.page-wrapper .card-plan__text ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	text-align: start;
}

.page-wrapper .card-plan__text ul > li {
	display: flex;
	align-items: center;
	gap: 3px;
	position: relative;
}

.page-wrapper .card-plan__text ul li {
	padding: 8px 0;
	padding-left: 28px;
	margin-bottom: 10px;
}

.page-wrapper .card-plan__text ul > li::before {
	content: "\f058";
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0;
	color: #006838;
	font-size: 18px;
	line-height: 2;
}

.page-wrapper .card-plan__text ul li:not(:last-child) {
	border-bottom: 1px solid #8080800f;
}

/* section-why */
.page-wrapper .section-why {
	padding-top: 40px;
	padding-bottom: 40px;
	overflow: hidden;
}

.page-wrapper .section-why .section-heading {
	padding-bottom: 10px !important;
}

.page-wrapper .why-content {
	margin-left: 20px;
}

.page-wrapper .section-why .why-media {
	position: relative;
	z-index: 0;
}

.page-wrapper .section-why .why-media img {
	width: 100%;
	display: block;
	border-radius: 100px 20px 150px 20px;
	position: relative;
	z-index: 1;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-wrapper .section-why .why-media::before {
	content: "";
	position: absolute;
	inset: 0;
	right: -25px;
	background-color: #eff1f9;
	border-radius: 100px 20px 100px 20px;
	z-index: -1;
}

.page-wrapper .why-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 16px;
	margin-bottom: 12px;
}

.page-wrapper .why-icon {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-wrapper .why-icon .fa {
	font-size: 18px;
	line-height: 1;
}

.page-wrapper .why-item .why-text__title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 4px;
	line-height: 1.35;
	color: #0f172a;
}

.page-wrapper .why-item .why-text__desc {
	margin: 0;
	color: #475569;
	line-height: 1.6;
	font-size: 14.5px;
}

.page-wrapper .why-banner {
	margin-top: 15px;
}

.page-wrapper .why-banner img {
	border-radius: 10px;
}

/* section-terms */
.page-wrapper .section-terms {
	position: relative;
}

.page-wrapper .row-wrapper {
	display: flex;
	align-items: center;
}

.page-wrapper .section-terms .terms-content .section-heading {
	text-align: start;
}

.page-wrapper .section-terms .terms-content .section-heading .heading-title {
	font-size: 1.6em;
}

.page-wrapper .section-terms .terms-media img {
	border-radius: 10px;
}

.page-wrapper .justify-content-center {
	display: flex;
	flex-wrap: wrap;
	justify-content: center !important;
}

/* section-how */
.page-wrapper .section-how {
	background-color: #fff;
	overflow: hidden;
}

.page-wrapper .section-how .row-wrapper {
	border-bottom: 1px #8988883d solid;
	padding-bottom: 5%;
}

.page-wrapper .section-how .row-wrapper:last-child {
	border-bottom: none;
	padding-bottom: 0;
	padding-top: 5%;
}

.page-wrapper .how-content {
	display: flex;
	align-items: center;
	min-height: 350px;
}

.page-wrapper .how-content .section-heading .heading-number {
	font-size: 5em;
	color: var(--primary-color);
	font-weight: 400;
	margin-bottom: 5px;
	font-family: "Monoton", sans-serif;
	position: absolute;
	opacity: 0.1;
	left: 10px;
	top: 20%;
}

.page-wrapper .how-content .section-heading .heading-title {
	color: #000;
	font-size: 1.5em;
}

.page-wrapper .section-how .how-media img {
	border-radius: 10px;
}

/* section-contact */

.page-wrapper .section-contact .contact-info {
	background: #fff;
	border-radius: 16px;
	padding: 33px;
	position: relative;
	z-index: 2;
	box-shadow: rgba(17, 17, 17, 0.08) 0px 20px 80px;
	border: 3px solid rgba(77, 77, 77, 0.25);
}

.page-wrapper .section-contact .contact-info .section-heading .heading-title {
	font-size: 1.675em;
}

.page-wrapper .section-contact .contact-info .contact-info_list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.page-wrapper .section-contact .contact-info .contact-info_list .contact-info_list__item {
	display: flex;
	gap: 15px;
	align-items: center;
}

.page-wrapper .section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.page-wrapper .section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__icon i {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #495057;
}

.page-wrapper .section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___title {
	font-size: 1.3em;
	font-weight: 600;
	color: #495057;
}

.page-wrapper .section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___value {
	font-size: 1.075em;
	line-height: 1.3;
	font-weight: 600;
	color: black;
	transition: all 0.3s ease-in-out;
}

.page-wrapper .section-contact .contact-media img {
	border-radius: 10px;
}

.page-wrapper .bg-gray {
	background: #f0f4ff;
}


/* Responsive */


@media (max-width: 1200px) {

	/* section-plans */
	.page-wrapper .section-plans .custom-col:nth-child(odd) {
		transform: none;
		margin-bottom: 30px;
	}

	.page-wrapper .section-plans .custom-col {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 1024px) {

	/* section-hero */
	.page-wrapper .section-hero {
		height: 65vh;
	}

	.page-wrapper .section-hero .col-hero {
		width: 50%;
	}

	.page-wrapper .section-heading-v2 .heading-title-v2 {
		font-size: 3em;
	}

	.page-wrapper .section-contact .contact-media {
		margin-top: 30px;
	}
}

@media screen and (max-width: 991px) {

	/* section-contact */
	.page-wrapper .section-contact .contact-info {
		padding: 20px;
		top: 130px;
	}

	.page-wrapper .section-contact .contact-info .contact-info_list {
		gap: 16px;
	}

	.page-wrapper .section-contact .contact-info .contact-info_list .contact-info_list__item {
		gap: 10px;
	}

	.page-wrapper .section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___title {
		font-size: 1.2em;
	}

	.page-wrapper .section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___value {
		font-size: 1.1em;
	}
}

@media screen and (max-width: 768px) {
	.page-wrapper .arrow-link {
		padding: 10px 20px;
	}

	.page-wrapper .section-heading {
		padding-bottom: 40px;
	}

	.page-wrapper .section-heading .heading-subtitle {
		font-size: 3em;
	}

	.page-wrapper .section-heading .heading-title {
		font-size: 2.3em;
	}

	.page-wrapper .row-wrapper {
		display: block;
	}

	/* section-hero */
	.page-wrapper .section-hero {
		height: 55vh;
	}

	/* section-plans */
	.page-wrapper .card-plan .card-body {
		max-width: 340px;
	}

	/* section-terms */
	.page-wrapper .section-terms .terms-content {
		margin-top: 20px;
	}

	/* section-how */
	.page-wrapper .how-content {
		min-height: 200px;
	}

	/* seciton-why */
	.page-wrapper .why-content {
		margin-left: 0;
	}

	/* section-contact */
	.page-wrapper .section-contact {
		background: #f5f7f7;
		min-height: auto;
	}

	.page-wrapper .section-contact .map-contact {
		position: relative;
	}

	.page-wrapper .section-contact .map-contact iframe {
		height: 300px;
	}

	.page-wrapper .section-contact .map-contact:before {
		display: none;
	}

	.page-wrapper .section-contact .contact-info {
		position: static;
	}
}

@media (max-width: 425px) {
	.page-wrapper .section-heading {
		padding-bottom: 35px;
	}

	.page-wrapper .section-heading .heading-title {
		font-size: 2.2em;
	}

	.page-wrapper .section-heading .heading-desc {
		font-size: 1em;
	}

	/* section-hero */
	.page-wrapper .section-hero {
		height: 45vh;
	}

	.page-wrapper .section-hero .col-hero {
		width: 100%;
	}

	.page-wrapper .section-hero .section-hero__bg {
		display: none;
	}

	.page-wrapper .section-heading-v2 .heading-title-v2 {
		font-size: 2.2em;
	}

	/* section-plans */
	.page-wrapper .custom-col {
		width: 100% !important;
	}

	.page-wrapper .card-plan .card-body {
		max-width: none;
	}

	/* section-how */
	.page-wrapper .how-content {
		min-height: 170px;
	}
}