@import '../components/header/header.css';
@import '../components/container/base.css';
@import '../components/footer/footer.css';
@import '../components/modal/modal.css';

body {
	background-color: #ffffff;
	margin: 0;
	padding: 0;
}

.page_content {
	padding-top: 71px;
	background-color: #ffffff;
	width: 100%;
	position: relative;
	z-index: 5;
}

.container_fix {
	max-width: 1100px;
	margin: 0 auto;
	padding: 90px 0px 120px 0px;
}

.eq_intro {
	text-align: center;
	margin-bottom: 110px;
}

.eq_main_title {
	font-size: 24px;
	font-weight: 700;
	color: #555b76;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.eq_intro_desc {
	font-size: 16px;
	line-height: 1.6;
	color: #4a4a4a;
	max-width: 600px;
	margin: 0 auto;
}

.eq_blocks_wrapper {
	display: flex;
	flex-direction: column;
	gap: 110px;
	margin-bottom: 100px;
}

.eq_block {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: flex-start;
}

.eq_title {
	font-size: 22px;
	font-weight: 700;
	color: #e87a79;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	text-transform: lowercase;
}

.red_dot {
	font-size: 26px;
	color: #e87a79;
	margin-right: 14px;
	line-height: 0;
	display: inline-block;
	transform: translateY(-1px);
}

.eq_list {
	list-style-type: disc;
	padding-left: 8px;
}

.eq_list li {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a1a;
	margin-bottom: 6px;
}

.eq_list li::marker {
	font-size: 9px;
	color: #1a1a1a;
}

.text_red {
	color: #e87a79;
	font-weight: 500;
}

.eq_text_desc {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a1a;
}

.eq_img_col {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}

.eq_img_col img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.eq_cta {
	text-align: center;
	padding-top: 48px;
}

.cta_btn {
	display: inline-block;
	background: #e87a79;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 60px;
	border-radius: 35px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
}

.cta_btn:hover {
	background: #d45251;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.container_fix {
		padding: 50px 20px 80px 20px;
	}

	.eq_intro {
		margin-bottom: 60px;
	}

	.eq_main_title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.eq_intro_desc {
		font-size: 14px;
	}

	.eq_blocks_wrapper {
		gap: 60px;
		margin-bottom: 60px;
	}

	.eq_block {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.eq_title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.eq_list {
		padding-left: 8px;
	}

	.eq_list li {
		font-size: 14px;
		margin-bottom: 4px;
	}

	.eq_img_col {
		justify-content: center;
	}

	.eq_img_col img {
		max-width: 80%;
	}

	.cta_btn {
		padding: 16px 40px;
		font-size: 14px;
	}
}
