/* Roots */

:root {
	--cta-section-max-width: 1250px;
	--cta-padding: 80px 0;
}

/* Modern/experimental support only */
@supports (color: color-contrast(black vs white)) {
	:root {
		--lp-primary-contrast: color-contrast(var(--lp-primary-color) vs #ffffff, #1f2a33);
		--lp-accent-contrast: color-contrast(var(--lp-accent-color) vs #ffffff, #1f2a33);
	}
}

.lp-section {
	
	width:100%;
	display:flex;
	    padding: 35px 20px;
	    justify-content: center;
}

.lp-container{
	width:100%;
	max-width:1200px;
	
}

/************ Hero CSS ************/
.lp-section-hero {
	position: relative;
	padding: 80px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* .lp-section-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
} */

.lp-section-hero .lp-container {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-section-hero .lp-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

.lp-section-hero .lp-hero-content {
	flex: 1 1 55%;
	max-width: 720px;
	color: #fff;
}

.lp-section-hero .lp-hero-eyebrow {
	margin: 0 0 22px;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ed8f14;
}

.lp-section-hero .lp-hero-heading {
	margin: 0 0 30px;
	color: #fff;
	font-size: clamp(42px, 5vw, 76px);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.lp-section-hero .lp-hero-subtitle {
	color: #fff;
	font-size: 20px;
	line-height: 1.7;
}

.lp-section-hero .lp-hero-subtitle p {
	margin: 0 0 28px;
	color: #fff;
}

.lp-section-hero .lp-hero-subtitle p:last-child {
	margin-bottom: 0;
}

.lp-section-hero .lp-hero-actions {
	margin-top: 38px;
}

.lp-section-hero .lp-hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 260px;
	padding: 18px 34px;
	border-radius: 5px;
	background: #ed8f14;
	color: #fff;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
}

.lp-section-hero .lp-hero-button:hover {
	background: #d97f0d;
	color: #fff;
	transform: translateY(-2px);
}

.lp-section-hero .lp-hero-image {
	flex: 0 0 420px;
	max-width: 420px;
}

.lp-section-hero .lp-hero-image img {
	display: block;
	width: 100%;
	height: 640px;
	object-fit: cover;
	border-radius: 28px;
}

/* Tablet */
@media (max-width: 991px) {
	.lp-section-hero {
		padding: 70px 0;
	}

	.lp-section-hero .lp-inner {
		gap: 40px;
	}

	.lp-section-hero .lp-hero-image {
		flex: 0 0 360px;
		max-width: 360px;
	}

	.lp-section-hero .lp-hero-image img {
		height: 520px;
	}

	.lp-section-hero.lp-hero-subtitle {
		font-size: 18px;	
	}
}

/* Mobile */
@media (max-width: 767px) {
	.lp-section-hero {
		padding: 56px 0;
	}

	.lp-section-hero .lp-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 36px;
	}

	.lp-section-hero .lp-hero-content,
	.lp-section-hero .lp-hero-image {
		width: 100%;
		max-width: 100%;
		flex: 1 1 100%;
	}

	.lp-section-hero .lp-hero-heading {
		font-size: 42px;
	}

	.lp-section-hero .lp-hero-subtitle {
		font-size: 17px;
		line-height: 1.65;
	}

	.lp-section-hero .lp-hero-button {
		width: 100%;
		min-width: 0;
	}

	.lp-section-hero .lp-hero-image img {
		height: auto;
		max-height: 520px;
	}
}

/********** End Hero CSS **********/

/********* Trustbar CSS ***********/

.lp-section-trustbar {
	background: #f3f3f3;
	padding: 35px 0;
}

.lp-section-trustbar .lp-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-trustbar-header {
	max-width: 860px;
	margin: 0 auto 48px;
	text-align: center;
}

.lp-trustbar-heading {
	margin: 0 0 22px;
	color: #000;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1.12;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.lp-trustbar-description {
	max-width: 760px;
	margin: 0 auto;
	color: #000;
	font-size: 18px;
	line-height: 1.6;
}

.lp-trustbar-description p {
	margin: 0;
}

.lp-trustbar-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.lp-trustbar-card {
	background: #173f63;
	color: #fff;
	border-radius: 16px;
	padding: 34px 34px 36px;
	text-align: center;
	min-height: 335px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.lp-trustbar-icon {
	margin: 0 auto 18px;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-trustbar-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.lp-trustbar-card-title {
	margin: 0 0 26px;
	color: #fff;
	font-size: 22px;
	line-height: 1.15;
	font-weight: 700;
}

.lp-trustbar-card-value {
	color: #fff;
	font-size: 18px;
	line-height: 1.55;
}

.lp-trustbar-card-value p {
	margin: 0 0 18px;
}

.lp-trustbar-card-value p:last-child {
	margin-bottom: 0;
}

/* tablet */
@media (max-width: 991px) {
	.lp-section-trustbar {
		padding: 35px 0;
	}

	.lp-trustbar-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.lp-trustbar-card {
		min-height: auto;
	}

	.lp-trustbar-card-title {
		font-size: 20px;
	}

	.lp-trustbar-card-value {
		font-size: 17px;
	}
}

/* mobile */
@media (max-width: 767px) {
	.lp-section-trustbar {
		padding: 35px;
	}

	.lp-section-trustbar .lp-container {
		padding: 0 20px;
	}

	.lp-trustbar-header {
		margin-bottom: 34px;
	}

	.lp-trustbar-heading {
		font-size: 32px;
	}

	.lp-trustbar-description {
		font-size: 16px;
	}

	.lp-trustbar-card {
		padding: 28px 22px 30px;
		border-radius: 14px;
	}

	.lp-trustbar-card-title {
		margin-bottom: 20px;
		font-size: 19px;
	}

	.lp-trustbar-card-value {
		font-size: 16px;
		line-height: 1.6;
	}
}

/******* End Trustbar CSS *********/

/********* Empathy CSS ***********/

.lp-empathy-outcomes {
	padding: 35px 0;
	background: #f2f2f2;
}

.lp-empathy-outcomes .lp-container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-empathy-outcomes__inner {
	display: flex;
	align-items: center;
	gap: 80px;
}

.lp-empathy-outcomes--image-left .lp-empathy-outcomes__inner {
	flex-direction: row;
}

.lp-empathy-outcomes--image-right .lp-empathy-outcomes__inner {
	flex-direction: row-reverse;
}

.lp-empathy-outcomes__media {
	flex: 0 0 48%;
	max-width: 48%;
}

.lp-empathy-outcomes__media img {
	display: block;
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.lp-empathy-outcomes__content {
	flex: 1 1 52%;
	max-width: 52%;
}

.lp-empathy-outcomes__heading {
	margin: 0 0 28px;
	color: #000;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1.05;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.lp-empathy-outcomes__intro {
	margin-bottom: 26px;
	color: #000;
	font-size: 18px;
	line-height: 1.6;
}

.lp-empathy-outcomes__intro p {
	margin: 0;
}

.lp-empathy-outcomes__items {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.lp-empathy-outcomes__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.lp-empathy-outcomes__item-icon {
	flex: 0 0 40px;
	width: 40px;
	line-height: 0;
}

.lp-empathy-outcomes__item-icon img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.lp-empathy-outcomes__item-text {
	flex: 1 1 auto;
}

.lp-empathy-outcomes__item-title {
	margin: 0 0 6px;
	color: #000;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
}

.lp-empathy-outcomes__item-description {
	color: #000;
	font-size: 18px;
	line-height: 1.6;
}

.lp-empathy-outcomes__item-description p {
	margin: 0;
}

/* tablet */
@media (max-width: 991px) {
	.lp-empathy-outcomes {
		padding: 35px 0;
	}

	.lp-empathy-outcomes__inner {
		gap: 40px;
		align-items: flex-start;
	}

	.lp-empathy-outcomes__media img {
		height: 340px;
	}

	.lp-empathy-outcomes__intro,
	.lp-empathy-outcomes__item-description {
		font-size: 17px;
	}
}

/* mobile */
@media (max-width: 767px) {
	.lp-empathy-outcomes {
		padding: 35px 0;
	}

	.lp-empathy-outcomes .lp-container {
		padding: 0 20px;
	}

	.lp-empathy-outcomes__inner,
	.lp-empathy-outcomes--image-left .lp-empathy-outcomes__inner,
	.lp-empathy-outcomes--image-right .lp-empathy-outcomes__inner {
		flex-direction: column;
		gap: 32px;
	}

	.lp-empathy-outcomes__media,
	.lp-empathy-outcomes__content {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.lp-empathy-outcomes__media img {
		height: auto;
		max-height: 360px;
	}

	.lp-empathy-outcomes__heading {
		font-size: 34px;
		margin-bottom: 22px;
	}

	.lp-empathy-outcomes__intro {
		margin-bottom: 22px;
		font-size: 16px;
	}

	.lp-empathy-outcomes__item {
		gap: 12px;
	}

	.lp-empathy-outcomes__item-title {
		font-size: 17px;
	}

	.lp-empathy-outcomes__item-description {
		font-size: 16px;
	}
}

/******* End Empathy CSS *********/
/********* Attorney CSS **********/

.lp-section-attorneys {
	padding: 35px 0;
	background: #f3f3f3;
}

.lp-section-attorneys .lp-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-attorneys-header {
	max-width: 1320px;
	margin: 0 auto 42px;
	text-align: center;
}

.lp-attorneys-heading {
	margin: 0 0 22px;
	color: #000;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1.12;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.lp-attorneys-subheading {
	max-width: 1320px;
	margin: 0 auto;
	color: #000;
	font-size: 18px;
	line-height: 1.6;
}

.lp-attorneys-subheading p {
	margin: 0;
}

.lp-attorneys-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 390px));
	justify-content: center;
	gap: 20px;
}

.lp-attorneys-card {
	background: transparent;
	display: flex;
	flex-direction: column;
}

.lp-attorneys-card-image {
	width: 100%;
	overflow: hidden;
}

.lp-attorneys-card-image img {
	display: block;
	width: 100%;
	height: 475px;
	object-fit: cover;
}

.lp-attorneys-card-name-wrap {
	padding: 12px 18px;
	text-align: center;
}

.lp-attorneys-card-name {
	margin: 0;
	color: #003b5c;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 500;
}

.lp-attorneys-card-content {
	text-align: center;
	padding-bottom: 20px;
}

.lp-attorneys-card-title {
	margin: 0 0 14px;
	color: #fff;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 700;
}

.lp-attorneys-card-bio {
	color: #000;
	font-size: 17px;
	line-height: 1.7;
}

.lp-attorneys-card-bio p {
	margin: 0 0 16px;
}

.lp-attorneys-card-bio p:last-child {
	margin-bottom: 0;
}

.lp-attorneys-card-actions {
	margin-top: 24px;
}

.lp-attorneys-card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	padding: 10px 20px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	transition: all 0.25s ease;
}

.lp-attorneys-card-button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	color: #ed8f14;
}

/* tablet */
@media (max-width: 991px) {
	.lp-section-attorneys {
		padding: 35px 0;
	}

	.lp-attorneys-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lp-attorneys-card-image img {
		height: 420px;
	}
}

/* mobile */
@media (max-width: 767px) {
	.lp-section-attorneys {
		padding: 35px 0;
	}

	.lp-section-attorneys .lp-container {
		padding: 0 20px;
	}

	.lp-attorneys-header {
		margin-bottom: 30px;
	}

	.lp-attorneys-heading {
		font-size: 34px;
	}

	.lp-attorneys-subheading {
		font-size: 16px;
	}

	.lp-attorneys-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.lp-attorneys-card-image img {
		height: auto;
		max-height: 460px;
	}

	.lp-attorneys-card-name {
		font-size: 20px;
	}

	.lp-attorneys-card-title {
		font-size: 17px;
	}

	.lp-attorneys-card-bio {
		font-size: 16px;
	}

	.lp-attorneys-card-button {
		width: 100%;
		min-width: 0;
	}
}

/******* End Attorney CSS ********/
/******* Testimonials CSS ********/
.lp-section-testimonials {
	padding: 90px 0 70px;
	padding-bottom:100px!important	;
	background: #f3f3f3;
	overflow: hidden;
}

.lp-section-testimonials .lp-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-testimonials-header {
	max-width: 980px;
	margin: 0 auto 42px;
	text-align: center;
}

.lp-testimonials-heading {
	margin: 0 0 18px;
	color: #000;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1.12;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.lp-testimonials-subheading {
	color: #000;
	font-size: 18px;
	line-height: 1.65;
}

.lp-testimonials-subheading p {
	margin: 0;
}

.lp-testimonials-carousel-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 28px;
}

.lp-testimonials-carousel {
	overflow: hidden;
	width: 100%;
}

.lp-testimonials-track {
	display: flex;
	gap: 22px;
	transition: transform 0.35s ease;
	will-change: transform;
}

.lp-testimonials-slide {
	flex: 0 0 calc((100% - 44px) / 3);
	max-width: calc((100% - 44px) / 3);
}

.lp-testimonials-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 14px;
	min-height: 280px;
	padding: 30px 34px 28px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.lp-testimonials-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.lp-testimonials-reviewer {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	flex: 1 1 auto;
}

.lp-testimonials-reviewer-image {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	overflow: hidden;
	background: #d9dde2;
	flex: 0 0 42px;
}

.lp-testimonials-reviewer-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lp-testimonials-reviewer-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: #d9dde2;
}

.lp-testimonials-reviewer-name {
	margin: 0 0 2px;
	color: #222;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 500;
}

.lp-testimonials-reviewer-position {
	margin: 0 0 6px;
	color: #777;
	font-size: 13px;
	line-height: 1.35;
}

.lp-testimonials-rating {
	display: flex;
	align-items: center;
	gap: 2px;
}

.lp-testimonials-star {
	color: #d4d4d4;
	font-size: 18px;
	line-height: 1;
}

.lp-testimonials-star.is-active {
	color: #f0a642;
}

.lp-testimonials-google-mark {
	flex: 0 0 auto;
	color: #000;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	margin-top: 2px;
}

.lp-testimonials-card-quote {
	color: #222;
	font-size: 17px;
	line-height: 1.45;
}

.lp-testimonials-card-quote p {
	margin: 0;
}

.lp-testimonials-arrow {
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #666;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
	flex: 0 0 46px;
}

.lp-testimonials-arrow:hover {
	transform: translateY(-1px);
}

.lp-testimonials-arrow:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.lp-testimonials-arrow span {
	transform: translateY(-4px);
}

.lp-testimonials-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 26px;
}

.lp-testimonials-dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 50%;
	background: #c9c9c9;
	padding: 0;
	cursor: pointer;
}

.lp-testimonials-dot.is-active {
	background: #333;
}

/* tablet */
@media (max-width: 991px) {
	.lp-section-testimonials {
		padding: 72px 0 60px;
	}

	.lp-testimonials-slide {
		flex: 0 0 calc((100% - 22px) / 2);
		max-width: calc((100% - 22px) / 2);
	}

	.lp-testimonials-card {
		min-height: 280px;
		padding: 26px 24px;
	}

	.lp-testimonials-card-quote {
		font-size: 16px;
	}
}

/* mobile */
@media (max-width: 767px) {
	.lp-section-testimonials {
		padding: 56px 0 52px;
	}

	.lp-section-testimonials .lp-container {
		padding: 0 20px;
	}

	.lp-testimonials-header {
		margin-bottom: 28px;
	}

	.lp-testimonials-heading {
		font-size: 34px;
	}

	.lp-testimonials-subheading {
		font-size: 16px;
	}

	.lp-testimonials-carousel-wrap {
		gap: 12px;
	}

	.lp-testimonials-slide {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.lp-testimonials-card {
		min-height: auto;
		padding: 24px 20px;
	}

	.lp-testimonials-card-top {
		margin-bottom: 18px;
	}

	.lp-testimonials-card-quote {
		font-size: 15px;
		line-height: 1.5;
	}

	.lp-testimonials-arrow {
		width: 40px;
		height: 40px;
		font-size: 30px;
		flex: 0 0 40px;
	}
}
/***** End Testimonials CSS ******/

/*********** CTA CSS *************/
.lp-section-cta {
	position: relative;
	padding: 110px 0 140px;
	background-color: #1f4a6d;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.lp-section-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(17, 57, 90, 0.82);
	pointer-events: none;
}

.lp-section-cta .lp-container {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-cta-inner {
	text-align: center;
	max-width: 980px;
	margin: 0 auto;
}

.lp-cta-title {
	margin: 50px 0px;
	color: #fff;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.02em;
}



.lp-cta-actions {
	margin-top: 0;
}

.lp-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 205px;
	background: #eda93b;
	color: #fff;
	text-transform: uppercase;
	transition: all 0.25s ease;
	padding: 10px 20px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
}

.lp-cta-button:hover {
	background: #de9b31;
	color: #fff;
	transform: translateY(-2px);
}

/* tablet */
@media (max-width: 991px) {
	.lp-section-cta {
		padding: 90px 0 110px;
	}

}

/* mobile */
@media (max-width: 767px) {
	.lp-section-cta {
		padding: 70px 0 80px;
	}

	.lp-section-cta .lp-container {
		padding: 0 20px;
	}

	.lp-cta-title {
		font-size: 38px;
	}

	.lp-cta-button {
		width: 100%;
		max-width: 260px;
		min-width: 0;
		padding: 16px 24px;
		font-size: 18px;
	}
}
/********* End CTA CSS ***********/


/********* Process CSS ***********/
.lp-section-process {
	padding: 35px 0;
}

.lp-section-process .lp-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-process-header {
	max-width: 980px;
	margin: 0 auto 42px;
	text-align: center;
}

.lp-process-heading {
	margin: 0 0 18px;
	color: #111;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1.12;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.lp-process-subheading {
	color: #222;
	font-size: 18px;
	line-height: 1.65;
}

.lp-process-subheading p {
	margin: 0;
}

.lp-process-grid-parent{
	display: flex;
	justify-content: center;
}

.lp-process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	width: 80%;
}

.lp-process-card {
	background: #fff;
	border: 1px solid #cfcfcf;
	border-radius: 5px;
	padding: 40px;
	min-height: 238px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.lp-head-card{
	display: flex;
}

.lp-process-card-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 18px;
	line-height: 0;
}

.lp-process-card-icon img {
	display: block;
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-left: 20px;
}

.lp-process-card-step-number {
	margin: 0 0 8px;
	background-color: #173f63;
	color: #fff;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 30px;
	margin-left: -60px;
}

.lp-process-card-title {
	margin: 0 0 14px;
	color: #173f63;
	font-size: clamp(24px, 2vw, 34px);
	line-height: 1.15;
	font-weight: 500;
}

.lp-process-card-description {
	color: #111;
	font-size: 16px;
	line-height: 1.55;
}

.lp-process-card-description p {
	margin: 0;
}

/* tablet */
@media (max-width: 1199px) {
	.lp-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.lp-section-process {
		padding: 72px 0;
	}

	.lp-process-card {
		padding: 26px 28px 30px;
		min-height: 220px;
	}

	.lp-process-card-title {
		font-size: 30px;
	}
}

/* mobile */
@media (max-width: 767px) {
	.lp-section-process {
		padding: 56px 0;
	}

	.lp-section-process .lp-container {
		padding: 0 20px;
	}

	.lp-process-header {
		margin-bottom: 28px;
	}

	.lp-process-heading {
		font-size: 34px;
	}

	.lp-process-subheading {
		font-size: 16px;
	}

	.lp-process-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.lp-process-card {
		border-radius: 24px;
		padding: 24px 22px 26px;
		min-height: auto;
	}

	.lp-process-card-icon {
		width: 46px;
		height: 46px;
		margin-bottom: 16px;
	}

	.lp-process-card-icon img {
		width: 46px;
		height: 46px;
	}

	.lp-process-card-title {
		font-size: 24px;
	}

	.lp-process-card-description {
		font-size: 15px;
	}
}
/******* End Process CSS *********/

/***** Service Specific CSS *****/
.lp-section-service-specific {
	padding: 35px 0;
	background: #f5f5f5;
	overflow: hidden;
}

.lp-section-service-specific .lp-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-service-specific__layout {
	display: grid;
	grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
	gap: 60px;
	align-items: start;
}

.lp-service-specific-left-content{
	height: 100%;
	display: flex;
}

.lp-service-specific__content {
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lp-service-specific__heading {
	margin: 0 0 34px;
	color: #1f2937;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 0.98;
	font-weight: 400;
	letter-spacing: -0.04em;
}

.lp-service-specific__heading strong,
.lp-service-specific__heading b {
	font-weight: 700;
}

.lp-service-specific__intro {
	margin-bottom: 26px;
	color: #374151;
	font-size: 18px;
	line-height: 1.55;
}

.lp-service-specific__intro p {
	margin: 0 0 18px;
}

.lp-service-specific__intro p:last-child {
	margin-bottom: 0;
}

.lp-service-specific__actions {
	margin-top: 18px;
}

.lp-service-specific__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	min-width: 110px;
	border-radius: 999px;
	background: #ff5b36;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
	transition: all 0.25s ease;
}

.lp-service-specific__button:hover {
	background: #f14c28;
	color: #fff;
	transform: translateY(-1px);
}

.lp-service-specific__carousel-area {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px;
	gap: 18px;
	align-items: center;
}

.lp-service-specific__viewport {
	overflow: hidden;
	height: 610px;
	padding-right: 2px;
	padding-top: 2px;
}

.lp-service-specific__track {
	display: flex;
	flex-direction: column;
	gap: 22px;
	transition: transform 0.35s ease;
	will-change: transform;
}

.lp-service-specific__card {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	min-height: 278px;
	padding: 26px 26px;
	background: #f7f7f7;
	border: 1px solid #d8dde3;
	border-radius: 5px;
}

.lp-service-specific__card-media {
	width: 100%;
}

.lp-service-specific__card-media img {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: 5px;
}

.lp-service-specific__card-body {
	min-width: 0;
}

.lp-service-specific__card-title {
	margin: 0 0 10px;
	color: #173f63;
	font-size: clamp(28px, 2.2vw, 44px);
	line-height: 1.1;
	font-weight: 500;
}

.lp-service-specific__card-description {
	color: #3d4350;
	font-size: 17px;
	line-height: 1.45;
}

.lp-service-specific__card-description p {
	margin: 0 0 14px;
}

.lp-service-specific__card-description p:last-child {
	margin-bottom: 0;
}

.lp-service-specific__card-actions {
	margin-top: 18px;
}

.lp-service-specific__card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	background: #173f63;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 600;
	transition: all 0.25s ease;
}

.lp-service-specific__card-button:hover {
	background: #083cb2;
	color: #fff;
}

.lp-service-specific__controls {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.lp-service-specific__arrow {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #4b5563;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lp-service-specific__arrow:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.lp-service-specific__dots {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lp-service-specific__dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 50%;
	background: #c9c9c9;
	padding: 0;
	cursor: pointer;
}

.lp-service-specific__dot.is-active {
	background: #333;
}

/* tablet */
@media (max-width: 1199px) {
	.lp-service-specific__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.lp-service-specific__heading {
		max-width: 700px;
	}
}

@media (max-width: 991px) {
	.lp-section-service-specific {
		padding: 72px 0;
	}

	.lp-service-specific__viewport {
		height: 560px;
	}

	.lp-service-specific__card {
		grid-template-columns: 200px minmax(0, 1fr);
		gap: 24px;
		min-height: 250px;
	}

	.lp-service-specific__card-media img {
		height: 200px;
	}

	.lp-service-specific__card-title {
		font-size: 32px;
	}
}

/* mobile */
@media (max-width: 767px) {
	.lp-section-service-specific {
		padding: 56px 0;
	}

	.lp-section-service-specific .lp-container {
		padding: 0 20px;
	}

	.lp-service-specific__layout {
		gap: 30px;
	}

	.lp-service-specific__heading {
		font-size: 42px;
		margin-bottom: 24px;
	}

	.lp-service-specific__intro {
		font-size: 16px;
	}

	.lp-service-specific__carousel-area {
		grid-template-columns: 1fr;
	}

	.lp-service-specific__controls {
		flex-direction: row;
		justify-content: center;
	}

	.lp-service-specific__dots {
		flex-direction: row;
	}

	.lp-service-specific__viewport {
		height: auto;
		overflow: visible;
	}

	.lp-service-specific__track {
		transform: none !important;
		gap: 18px;
	}

	.lp-service-specific__card {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 22px;
		border-radius: 22px;
	}

	.lp-service-specific__card-media img {
		height: 220px;
		border-radius: 18px;
	}

	.lp-service-specific__card-title {
		font-size: 28px;
	}

	.lp-service-specific__card-description {
		font-size: 16px;
	}

	.lp-service-specific__arrow {
		width: 40px;
		height: 40px;
	}
}
@media (max-width: 766px) {
	.lp-service-specific__controls {
			display: none;
			flex-direction: row;
			justify-content: center;
	}
}
/*** End Service Specific CSS ***/


/********************************/
/********* New Modules **********/
/********************************/



/********* Header CSS *********/
.lp-section-header {
	width: 100%;
	padding: 50px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.lp-section-header .lp-container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-section-header .lp-inner {
	width: 100%;
}

.lp-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.lp-header-left,
.lp-header-right {
	display: flex;
	align-items: center;
}

.lp-header-title {
	display: inline-block;
	color: #ffffff;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: -0.4px;
}

.lp-header-title span {
	color: var(--lp-accent-color);
	font-weight: 700;
}

.lp-header-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.lp-header-logo img {
	display: block;
	max-width: 80px;
	height: auto;
}

.lp-header-contact {
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
}

.lp-header-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-header-icon img {
	/* width: 21px;
        height: 21px; */
	object-fit: contain;
	display: block;
}

.lp-header-contact-text {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.lp-header-contact-label {
	font-size: 18px;
	line-height: 1.1;
	font-weight: 400;
	text-transform: uppercase;
}

.lp-header-contact-phone {
	font-size: 18px;
	line-height: 1.1;
	font-weight: 700;
}

@media (max-width: 767px) {
	.lp-section-header {
		padding: 28px 0;
	}

	.lp-header-content {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		gap: 24px;
	}

	.lp-header-title {
		font-size: 18px;
	}

	.lp-header-logo img {
		max-width: 280px;
	}

	.lp-header-contact {
		justify-content: center;
	}

	.lp-header-contact-label,
	.lp-header-contact-phone {
		font-size: 16px;
	}
}
/******* End Header CSS *******/



/***** What to Expect CSS *****/
.lp-section-wte {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-wte .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-wte-inner {
	text-align: center;
}

.lp-wte-eyebrow {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.lp-wte-title {
	max-width: 720px;
	margin: 0 auto;
	font-family: "Raleway", sans-serif;
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
	text-transform: none;
}

.lp-wte-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 70px;
	margin-top: 44px;
}

.lp-wte-item {
	text-align: center;
}

.lp-wte-number {
	font-family: "Raleway", sans-serif;
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	color: var(--lp-accent-color);
	margin-bottom: 20px;
}

.lp-wte-item-title {
	margin: 0 0 22px;
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--lp-secondary-color);
	text-transform: none;
}

.lp-wte-description {
	max-width: 330px;
	margin: 0 auto;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	color: var(--lp-text-color);
	text-align: center;
}

@media (max-width: 991px) {
	.lp-section-wte {
		padding: var(--cta-padding);
	}

	.lp-wte-title {
		font-size: 42px;
		line-height: 50px;
	}

	.lp-wte-items {
		gap: 36px;
	}

	.lp-wte-number {
		font-size: 68px;
	}
}

@media (max-width: 767px) {
	.lp-section-wte {
		padding: var(--cta-padding);
	}

	.lp-wte-title {
		font-size: 34px;
		line-height: 42px;
	}

	.lp-wte-items {
		grid-template-columns: 1fr;
		gap: 44px;
		margin-top: 40px;
	}

	.lp-wte-number {
		font-size: 62px;
		margin-bottom: 14px;
	}

	.lp-wte-item-title {
		margin-bottom: 14px;
	}
}
/*** End What to Expect CSS ***/


/***** Success Section CSS *****/
.lp-section-success {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-success .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-success-inner {
	text-align: center;
}

.lp-success-header {
	max-width: 850px;
	margin: 0 auto 26px;
}

.lp-success-pre-title {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 22px;
}

.lp-success-title {
	margin: 0 auto 22px;
	font-family: "Raleway", sans-serif;
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
	text-transform: none;
}

.lp-success-description {
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
}

.lp-success-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 24px;
	margin-top: 18px;
}

.lp-success-card {
	position: relative;
	min-height: 114px;
	padding: 21px 22px 18px;
	text-align: left;
	border-left: 5px solid var(--lp-accent-color);
}

.lp-success-card-subject {
	margin: 0 0 9px;
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: none;
	color: var(--lp-accent-color);
	
}

.lp-success-card-title {
	margin-bottom: 9px;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.2px;
	color: var(--lp-text-color);
	text-transform: uppercase;
}

.lp-success-card-description {
	font-family: "Raleway", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.55;
	color: var(--lp-text-color);
}

.lp-success-note {
	margin-top: 24px;
	font-family: "Raleway", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #ffffff;
}

@media (max-width: 991px) {
	.lp-section-success {
		padding: var(--cta-padding);
	}

	.lp-section-success .lp-container {
		max-width: 820px;
	}

	.lp-success-title {
		font-size: 42px;
		line-height: 50px;
	}
}

@media (max-width: 767px) {
	.lp-section-success {
		padding: var(--cta-padding);
	}

	.lp-success-title {
		font-size: 34px;
		line-height: 42px;
	}

	.lp-success-description {
		font-size: 16px;
	}

	.lp-success-items {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.lp-success-card {
		min-height: auto;
		padding: 22px 20px;
	}

	.lp-success-card-subject {
		font-size: 19px;
	}
}
/*** End Success Section CSS ***/


/***** Practice Area CSS *****/
.lp-section-practice-areas {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-practice-areas .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-practice-inner {
	text-align: center;
}

.lp-practice-header {
	max-width: 850px;
	margin: 0 auto 28px;
}

.lp-practice-pre-title {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 18px;
}

.lp-practice-title {
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
	text-transform: none;
}

.lp-practice-description {
	max-width: 720px;
	margin: 16px auto 0;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #52615b;
}

/* Cleaned up Grid & Outer Border Strategy */
.lp-practice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	/* Creates clean simulated borders between items */
	background-color: rgba(34, 50, 45, 0.55);
	/* Outer & Inner Border Color */
	/* Clean container wrapper */
}

.lp-practice-card {
	height: 100%;
	/* Keeps cards tall and matching evenly */
	padding: 24px 20px;
	text-align: left;
	box-sizing: border-box;
}

.lp-practice-icon {
	width: 18px;
	height: 18px;
	margin-bottom: 26px;
	color: #2f7198;
}

.lp-practice-icon svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: var(--lp-accent-color)!important;
		color: var(--lp-accent-color)!important;
}

.lp-practice-icon img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.lp-practice-card-title {
	margin: 0 0 24px;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: none;
	color: #2f7198;
}

.lp-practice-card-description {
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42;
	color:  var(--lp-text-color);
}

@media (max-width: 991px) {
	.lp-section-practice-areas .lp-container {
		max-width: 820px;
	}

	.lp-practice-title {
		font-size: 42px;
		line-height: 50px;
	}

	.lp-practice-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.lp-section-practice-areas {
		padding: var(--cta-padding);
	}

	.lp-practice-title {
		font-size: 34px;
		line-height: 42px;
	}

	.lp-practice-grid {
		grid-template-columns: 1fr;
	}

	.lp-practice-card {
		padding: 24px 20px;
	}

	.lp-practice-icon {
		margin-bottom: 18px;
	}

	.lp-practice-card-title {
		margin-bottom: 16px;
	}
}

/*** End Practice Area CSS ***/


/***** Video Section CSS *****/
.lp-section-video {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-video .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-video-inner {
	text-align: center;
}

.lp-video-pre-title {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 14px;
}

.lp-video-title {
	max-width: 760px;
	margin: 0 auto 12px;
	font-family: "Raleway", sans-serif;
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
	text-transform: none;
}

.lp-video-description {
	max-width: 720px;
	margin: 0 auto 26px;
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
}

.lp-video-wrap {
	max-width: 820px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	background: #000000;
	aspect-ratio: 16 / 9;
}

.lp-video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

@media (max-width: 991px) {
	.lp-section-video {
		padding: var(--cta-padding);
	}

	.lp-video-title {
		font-size: 42px;
		line-height: 50px;
	}

	.lp-video-description {
		font-size: 17px;
	}

	.lp-video-wrap {
		max-width: 760px;
	}
}

@media (max-width: 767px) {
	.lp-section-video {
		padding: var(--cta-padding);
	}

	.lp-video-title {
		font-size: 34px;
		line-height: 42px;
	}

	.lp-video-description {
		font-size: 16px;
		margin-bottom: 22px;
	}

	.lp-video-wrap {
		max-width: 100%;
	}
}
/*** End Video Section CSS ***/




/***** Counter Section CSS *****/
.lp-section-counter {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-counter .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-counter-inner {
	text-align: center;
}

.lp-counter-pre-title {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 18px;
}

.lp-counter-title {
	margin: 0 auto 56px;
	font-family: "Raleway", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lp-counter-title span {
	color: var(--lp-accent-color);
}

.lp-counter-description {
	max-width: 760px;
	margin: -34px auto 44px;
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	line-height: 1.45;
}

.lp-counter-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 58px;
	align-items: start;
}

.lp-counter-item {
	text-align: center;
}

.lp-counter-number {
	margin-bottom: 22px;
	font-family: "Raleway", sans-serif;
	font-size: 70px;
	font-weight: 800;
	line-height: 1;
	color:  var(--lp-accent-color);

}

.lp-counter-item-title {
	margin: 0 0 10px;
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.3;
	color: #ffffff;
}

.lp-counter-item-description {
	max-width: 320px;
	margin: 0 auto;
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.18;
	color:   var(--lp-text-color);
}

@media (max-width: 991px) {
	.lp-section-counter {
		padding: var(--cta-padding);
	}

	.lp-counter-items {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px 34px;
	}

	.lp-counter-title {
		font-size: 20px;
		margin-bottom: 46px;
	}

	.lp-counter-number {
		font-size: 64px;
	}

	.lp-counter-item-description {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.lp-section-counter {
		padding: var(--cta-padding);
	}

	.lp-counter-title {
		font-size: 20px;
		line-height: 1.45;
		margin-bottom: 42px;
	}

	.lp-counter-items {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.lp-counter-number {
		font-size: 58px;
		margin-bottom: 16px;
	}

	.lp-counter-item-description {
		font-size: 16px;
		max-width: 280px;
	}
}
/*** End Counter Section CSS ***/



/******** Choose Us CSS ********/

.lp-section-choose-us {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-choose-us .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-choose-us-inner {
	text-align: center;
}

.lp-choose-us-header {
	max-width: 1050px;
	margin: 0 auto 58px;
}

.lp-choose-us-pre-title {
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	line-height: 1.2;
	margin-bottom: 28px;
}

.lp-choose-us-title {
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-size: 50px;
	line-height: 1.18;
	text-transform: none;
}

.lp-choose-us-description {
	max-width: 760px;
	margin: 18px auto 0;
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	line-height: 1.45;
}

.lp-choose-us-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	max-width: 1090px;
	margin: 0 auto;
}

.lp-choose-us-card {
	background: var(--lp-secondary-bg-color);
	border-top: 2px solid var(--lp-accent-color);
	padding: 20px;
	text-align: left;
}

.lp-choose-us-count {
	margin-bottom: 20px;
	font-family: "Raleway", sans-serif;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	color: var(--lp-accent-color);
}

.lp-choose-us-card-title {
	margin: 0 0 20px;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--lp-accent-color);
	text-transform: none;
}

.lp-choose-us-card-description {
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42;
	color: var(--lp-text-color);
}

@media (max-width: 991px) {
	.lp-section-choose-us {
		padding: var(--cta-padding);
	}

	.lp-choose-us-title {
		font-size: 48px;
		line-height: 1.2;
	}

	.lp-choose-us-items {
		grid-template-columns: repeat(2, 1fr);
	}

	.lp-choose-us-card {
		min-height: auto;
	}
}

@media (max-width: 767px) {
	.lp-section-choose-us {
		padding: var(--cta-padding);
	}

	.lp-choose-us-header {
		margin-bottom: 38px;
	}

	.lp-choose-us-pre-title {
		font-size: 10px;
		margin-bottom: 18px;
	}

	.lp-choose-us-title {
		font-size: 34px;
		line-height: 42px;
	}

	.lp-choose-us-items {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.lp-choose-us-card {
		padding: 24px 22px;
	}

	.lp-choose-us-count {
		margin-bottom: 22px;
	}

	.lp-choose-us-card-title {
		margin-bottom: 18px;
		font-size: 16px;
	}

	.lp-choose-us-card-description {
		font-size: 14px;
	}
}
/****** End Choose Us CSS ******/


/******** FAQ Section CSS ********/
.lp-section-faq {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-faq .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-faq-inner {
	text-align: center;
}

.lp-faq-header {
	max-width: 940px;
	margin: 0 auto 36px;
}

.lp-faq-pre-title {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1.2;
	margin-bottom: 26px;
}

.lp-faq-title {
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-size: 50px;
	line-height: 60px;
	text-transform: none;
}

.lp-faq-description {
	max-width: 720px;
	margin: 18px auto 0;
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	line-height: 1.45;
}

.lp-faq-list {
	max-width: 85%;
	margin: 0 auto;
	text-align: left;
}

.lp-faq-item {
	border-bottom: 1px solid var(--lp-accent-color);
}

.lp-faq-item.is-active {
	border-bottom-color: transparent;
}

.lp-faq-question {
	width: 100%;
	min-height: 80px;
	padding: 0 20px;
	border: 0;
	background: transparent;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	cursor: pointer;
	text-align: left;
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.lp-faq-item.is-active .lp-faq-question {
	background: var(--lp-accent-color);
	padding-left: 20px;
	padding-right: 20px;
}

.lp-faq-icon {
	position: relative;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.lp-faq-icon::before,
.lp-faq-icon::after {
	content: "";
	position: absolute;
	background: #ffffff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.lp-faq-icon::before {
	width: 14px;
	height: 3px;
}

.lp-faq-icon::after {
	width: 3px;
	height: 14px;
}

.lp-faq-item.is-active .lp-faq-icon::after {
	display: none;
}

.lp-faq-answer {
	max-height: 0;
	overflow: hidden;
	background: var(--lp-secondary-bg-color);
	color: var(--lp-text-color);
	transition: max-height 0.35s ease;
		font-family: "Raleway", sans-serif;
		font-size: 16px;
		line-height: 1.55;
}

.lp-faq-answer-inner {
	padding: 18px 20px 24px;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	line-height: 1.55;
}

.lp-faq-answer-inner p {
	margin: 0;
}
.lp-faq-answer p {
	margin: 0;
}

@media (max-width: 991px) {
	.lp-section-faq {
		padding: var(--cta-padding);
	}

	.lp-faq-title {
		font-size: 42px;
		line-height: 50px;
	}
}

@media (max-width: 767px) {
	.lp-section-faq {
		padding: var(--cta-padding);
	}

	.lp-faq-title {
		font-size: 34px;
		line-height: 42px;
	}

	.lp-faq-question {
		min-height: 70px;
		padding: 0 14px;
		font-size: 16px;
	}

	.lp-faq-item.is-active .lp-faq-question {
		padding-left: 14px;
		padding-right: 14px;
	}

	.lp-faq-answer {
		padding: 16px 14px 22px;
		font-size: 15px;
	}
}
/****** End FAQ Section CSS ******/


/******** Hero Section CSS ********/
.lp-section-hero-form {
	width: 100%;
	padding: var(--cta-padding);
	background: #ffffff;
}

.lp-section-hero-form .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-hero-form-inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 72px;
	align-items: center;
}

/* LEFT CONTENT */
.lp-hero-form-left {
	text-align: left;
}

.lp-hero-pre-title {
	position: relative;
	margin-bottom: 18px;
	padding-left: 12px;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #2f6f95;
}

.lp-hero-pre-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 30px;
	transform: translateY(-50%);
}

.lp-hero-title {
	margin: 0 0 12px;
	font-family: "Raleway", sans-serif;
	font-size: 80px;
	line-height: 0.92;
	letter-spacing: -1.5px;
	color: #3a6f8f;
	text-transform: none;
}

.lp-hero-post-title {
	margin-bottom: 18px;
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-style: italic;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 4px;
	color: #2f6f95;
}

.lp-hero-description {
	max-width: 465px;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.18;
	color: var(--lp-text-color);
}

.lp-hero-description p {
	margin: 0;
}

/* OPTIONAL REVIEW ROW UNDER DESCRIPTION */
.lp-hero-reviews {
	max-width: 465px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid #b6b6b6;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	color: var(--lp-text-color);
}

.lp-hero-reviews span::before {
	content: "★";
	color: #f5a43b;
	margin-right: 7px;
}

/* RIGHT FORM CARD */
.lp-hero-form-right {
	width: 100%;
}

.lp-hero-form-card {
	margin-left: auto;
	background: #ffffff;
	padding: 30px 34px 36px;
	
	border-top: 2px solid var(--lp-accent-color);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.lp-hero-form-card button,
.lp-hero-form-card input[type="submit"] {
	background: var(--lp-accent-color)!important;
}
.lp-hero-right-title {
	margin: 0 0 12px;
	font-family: "Raleway", sans-serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.25;
	color: #2f6f95;
	text-align: center;
}

.lp-hero-right-description {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--lp-primary-color);
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	line-height: 1.45;
	color: var(--lp-text-color);
}

.lp-hero-right-description p {
	margin: 0 0 12px;
}

.lp-hero-right-description p:last-child {
	margin-bottom: 0;
}

.lp-hero-shortcode {
	margin-top: 0;
}

/* BASIC FORM CLEANUP ONLY */
.lp-hero-shortcode input,
.lp-hero-shortcode textarea,
.lp-hero-shortcode select {
	max-width: 100%;
	box-sizing: border-box;
}

.lp-hero-shortcode input[type="submit"],
.lp-hero-shortcode button {
	cursor: pointer;
}

/* MOBILE */
@media (max-width: 991px) {
	.lp-section-hero-form {
		padding: var(--cta-padding);
	}

	.lp-hero-form-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.lp-hero-title {
		font-size: 58px;
		line-height: 0.95;
	}

	.lp-hero-description,
	.lp-hero-reviews {
		max-width: 100%;
	}

	.lp-hero-form-card {
		max-width: 100%;
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.lp-section-hero-form {
		padding: 40px 0;
	}

	.lp-hero-pre-title {
		font-size: 11px;
		letter-spacing: 2.5px;
	}

	.lp-hero-title {
		font-size: 44px;
		line-height: 0.98;
	}

	.lp-hero-post-title {
		font-size: 12px;
		letter-spacing: 2px;
	}

	.lp-hero-description {
		font-size: 15px;
		line-height: 1.35;
	}

	.lp-hero-reviews {
		gap: 12px;
		font-size: 13px;
	}

	.lp-hero-form-card {
		padding: 26px 22px 30px;
	}

	.lp-hero-right-title {
		font-size: 24px;
	}
}
/****** End Hero Section CSS ******/


/********** Members CSS ***********/
.lp-section-members {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-members .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-members-inner {
	text-align: center;
}

.lp-members-header {
	max-width: 900px;
	margin: 0 auto 38px;
}

.lp-members-pre-title {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 22px;
}

.lp-members-title {
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
	text-transform: none;
}

.lp-members-description {
	max-width: 720px;
	margin: 16px auto 0;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #5f6264;
}

.lp-members-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.lp-member-card {
	background: var(--lp-secondary-bg-color);
	border-top: 2px solid var(--lp-accent-color);
	padding: 26px 26px 28px;
	text-align: center;
}

.lp-member-image {
	width: 200px;
	height: 200px;
	max-width: 100%;
	margin: 0 auto 26px;
	border-radius: 50%;
	overflow: hidden;
	background: #d8dde0;
}

.lp-member-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	filter: grayscale(100%);
}

.lp-member-name {
	margin: 0 0 20px;
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
	color:var(--lp-accent-color);
	text-transform: none;
}

.lp-member-position {
	margin-bottom: 22px;
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--lp-primary-color);
}

.lp-member-description {
	max-width: 270px;
	margin: 0 auto;
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	color: var(--lp-text-color);
}

@media (max-width: 991px) {
	.lp-members-title {
		font-size: 42px;
		line-height: 50px;
	}

	.lp-members-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lp-member-card {
		min-height: auto;
	}

	.lp-member-image {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 767px) {
	.lp-section-members {
		padding: var(--cta-padding);
	}

	.lp-members-header {
		margin-bottom: 30px;
	}

	.lp-members-title {
		font-size: 34px;
		line-height: 42px;
	}

	.lp-members-grid {
		grid-template-columns: 1fr;
	}

	.lp-member-card {
		padding: 24px 20px 28px;
	}

	.lp-member-image {
		width: 150px;
		height: 150px;
		margin-bottom: 22px;
	}

	.lp-member-name {
		margin-bottom: 14px;
	}

	.lp-member-position {
		margin-bottom: 16px;
	}
}
/********* End Member CSS *********/


/***** Testimonial Section CSS *****/
.lp-section-testimonials {
	width: 100%;
	padding: var(--cta-padding);
}

.lp-section-testimonials .lp-container {
	max-width: var(--cta-section-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.lp-testimonials-inner {
	text-align: center;
}

.lp-testimonials-header {
	max-width: 760px;
	margin: 0 auto 40px;
}

.lp-testimonials-pre-title {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 22px;
}

.lp-testimonials-title {
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-size: 50px;
	font-weight: 800;
	line-height: 60px;
	text-transform: none;
}

.lp-testimonials-description {
	max-width: 680px;
	margin: 18px auto 0;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #5f6264;
}

.lp-testimonials-description p {
	margin: 0;
}

.lp-testimonials-rating {
	margin-top: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	color: var(--lp-text-color);

}

.lp-testimonials-rating strong {
	color: var(--lp-accent-color);
	font-weight: 800;
}

.lp-testimonials-stars {
	color: #f7b500;
	letter-spacing: 1px;
	font-size: 16px;
}

/* Slider */
.lp-testimonials-slider {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
}

.lp-testimonials-viewport {
	overflow: hidden;
	width: 100%;
}

.lp-testimonials-track {
	display: flex;
	gap: 10px;
	transition: transform 0.55s ease;
	will-change: transform;
}

.lp-testimonial-slide {
	flex: 0 0 calc((100% - 20px) / 3);
}

.lp-testimonial-card {
	min-height: 292px;
	background: #ffffff;
	border: 1px solid #d5d5d5;
	padding: 24px 22px 24px;
	text-align: left;
	box-sizing: border-box;
}

.lp-testimonial-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.lp-testimonial-stars {
	color: #f7b500;
	letter-spacing: 3px;
	font-size: 15px;
	line-height: 1;
}

.lp-testimonial-quote {
	font-family: Georgia, serif;
	color: var(--lp-accent-color);
	font-size: 54px;
	line-height: 0.55;
}

.lp-testimonial-review {
	min-height: 92px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--lp-text-color);
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	font-style: italic;
	line-height: 1.45;
	color:  var(--lp-text-color);
}

.lp-testimonial-review p {
	margin: 0;
}

.lp-testimonial-author {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-top: 16px;
}

.lp-testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	background: #d7dee4;
	flex: 0 0 50px;
}

.lp-testimonial-avatar img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	filter: grayscale(100%);
}

.lp-testimonial-author-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-family: "Raleway", sans-serif;
}

.lp-testimonial-author-text strong {
	font-size: 13px;
	font-weight: 800;
	color: var(--lp-primary-color);
}

.lp-testimonial-author-text span {
	font-size: 12px;
	color:  var(--lp-accent-color);
}

/* Arrows */
.lp-testimonials-arrow {
	position: absolute;
	top: 48%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.55);
	font-size: 42px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	z-index: 3;
}

.lp-testimonials-prev {
	left: -18px;
}

.lp-testimonials-next {
	right: -18px;
}

.lp-testimonials-arrow:hover {
	color: #eb7203;
}

/* Dots */
.lp-testimonials-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.lp-testimonials-dot {
	width: 6px;
	height: 6px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	padding: 0;
	cursor: pointer;
}

.lp-testimonials-dot.is-active {
	background: #000000;
}

@media (max-width: 991px) {
	.lp-section-testimonials {
		padding: var(--cta-padding);
		
	}
	

	.lp-testimonials-title {
		font-size: 42px;
		line-height: 50px;
	}

	.lp-testimonial-slide {
		flex-basis: calc((100% - 10px) / 2);
	}

	.lp-testimonials-rating {
		margin-top: 38px;
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.lp-section-testimonials {
		padding: var(--cta-padding);
	}

	.lp-testimonials-title {
		font-size: 34px;
		line-height: 42px;
	}

	.lp-testimonials-rating {
		gap: 8px;
		font-size: 13px;
	}

	.lp-testimonial-slide {
		flex-basis: 100%;
	}

	.lp-testimonial-card {
		min-height: auto;
		padding: 22px 20px;
	}

	.lp-testimonials-prev {
		left: -10px;
	}

	.lp-testimonials-next {
		right: -10px;
	}

	.lp-testimonials-arrow {
		font-size: 34px;
	}
}
/*** End Testimonial Section CSS ***/