/* ==========================================
   ABOUT PAGE
========================================== */
.dr1059about {
	background: #ffffff;
	overflow: hidden;
}

.dr1059about-wrapper {
	max-width: 1200px;
	margin: auto;
	padding: 80px 20px;
}

/* HERO */
.dr1059about-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.dr1059about-image img {
	width: 100%;
	border-radius: 20px;
	display: block;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.dr1059about-badge {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #d4af37;
	border-radius: 30px;
	color: #071422;
	font-size: 13px;
	margin-bottom: 20px;
}

.dr1059about-hero-content h1 {
	font-size: 52px;
	line-height: 1.2;
	color: #071422;
	margin-bottom: 20px;
}

.dr1059about-hero-content h1 span {
	color: #d4af37;
}

.dr1059about-hero-content p {
	font-size: 17px;
	line-height: 1.9;
	color: #4b5563;
}

/* CONTENT */
.dr1059about-section {
	margin-bottom: 70px;
}

.dr1059about-section h2 {
	font-size: 36px;
	color: #071422;
	margin-bottom: 20px;
}

.dr1059about-content p {
	color: #4b5563;
	line-height: 1.9;
	margin-bottom: 15px;
}

/* GRID */
.dr1059about-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 70px;
}

.dr1059about-card {
	background: #f8fafc;
	padding: 30px;
	border-radius: 16px;
	border-left: 5px solid #d4af37;
}

.dr1059about-card h3 {
	color: #071422;
	margin-bottom: 15px;
}

/* FEATURES */
.dr1059about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.dr1059about-feature {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px;
}

.dr1059about-feature strong {
	display: block;
	color: #071422;
	margin-bottom: 8px;
}

.dr1059about-feature span {
	color: #6b7280;
}

/* ANIMATION */
.dr1059about .dr1059about-hero, .dr1059about .dr1059about-section,
	.dr1059about .dr1059about-grid {
	opacity: 0;
	transform: translateY(40px);
	transition: all .8s ease;
}

.dr1059about.dr1059about-active
.dr1059about-hero, .dr1059about.dr1059about-active
.dr1059about-section, .dr1059about.dr1059about-active
.dr1059about-grid {
	opacity: 1;
	transform: translateY(0);
}

/* MOBILE */
@media ( max-width :768px) {
	.dr1059about-hero {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.dr1059about-hero-content h1 {
		font-size: 34px;
	}
	.dr1059about-grid {
		grid-template-columns: 1fr;
	}
	.dr1059about-features {
		grid-template-columns: 1fr;
	}
	.dr1059about-section h2 {
		font-size: 28px;
	}
}