:root {
	--al-rosa: #edaea9;
	--al-marron: #705b58;
	--al-crema: #f1edeb;
	--al-fondo: #faf6f1;
	--al-font-titles: 'Dream Avenue', serif;
	--al-font-body: 'Montserrat', sans-serif;
}

.al-page-wrapper {
	background-color: var(--al-fondo);
	color: #333;
	font-family: var(--al-font-body);
	overflow: clip;
}

.al-page-wrapper *,
.al-page-wrapper *::before,
.al-page-wrapper *::after {
	box-sizing: border-box;
}

.al-container {
	width: min(100% - 40px, 1000px);
	margin-inline: auto;
}

.al-container-icons {
	width: min(65vw, 1400px);
	margin-inline: auto;
	padding-inline: 20px;
}

.al-page-wrapper h1,
.al-page-wrapper h2,
.al-page-wrapper h3,
.al-page-wrapper .al-title-font {
	font-family: var(--al-font-titles);
	font-weight: 400;
}

.page-title-bar-inner {
	display: none;
}

.al-page-wrapper h5.tutor-course-content-list-item-title {
	font-family: var(--al-font-body) !important;
}

/* Hero */
.al-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	place-items: center;
	min-height: max(660px, 78svh);
	padding: clamp(96px, 10vh, 132px) 0 clamp(52px, 7vh, 84px);
	background: #2b201c;
	color: #fff;
	text-align: center;
}

.al-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: rgba(0, 0, 0, 0.36);
	content: '';
}

.al-hero-media {
	position: absolute;
	z-index: -2;
	inset: 0;
	overflow: hidden;
}

.al-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.al-hero-content {
	display: flex;
	width: min(100% - 40px, 980px);
	margin-inline: auto;
	flex-direction: column;
	align-items: center;
}

.al-hero-category {
	margin: 0 0 16px;
	font-size: clamp(0.72rem, 0.8vw, 0.88rem);
	font-weight: 500;
	letter-spacing: 0.28em;
	line-height: 1.4;
	text-transform: uppercase;
}

.al-hero-title {
	max-width: 14ch;
	margin: 0;
	color: #fff;
	font-size: clamp(3.25rem, 6.7vw, 5.625rem);
	line-height: 0.98;
	text-wrap: balance;
	overflow-wrap: break-word;
}

.al-hero-subtitle {
	width: min(100%, 900px);
	margin-top: clamp(24px, 3vh, 34px);
	color: #fff;
	font-size: clamp(1rem, 1.3vw, 1.25rem);
	font-weight: 400;
	line-height: 1.45;
}

.al-hero-subtitle > :first-child {
	margin-top: 0;
}

.al-hero-subtitle > :last-child {
	margin-bottom: 0;
}

.al-hero-subtitle p {
	color: inherit;
}

.al-hero-actions {
	display: flex;
	width: 100%;
	margin-top: clamp(30px, 4vh, 42px);
	justify-content: center;
}

.al-course-cta-form {
	display: inline-block;
}

.al-course-cta-form form {
	margin: 0;
}

.al-course-cta,
.al-btn {
	display: inline-flex;
	min-height: 52px;
	padding: 13px 34px;
	border: 1.5px solid #fff;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-family: var(--al-font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.al-course-cta:hover,
.al-course-cta:focus-visible,
.al-btn:hover,
.al-btn:focus-visible {
	background: #fff;
	color: #000;
}

.al-course-cta:focus-visible,
.al-btn:focus-visible,
.al-btn-cta:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.al-course-cta:disabled,
.al-course-cta[aria-disabled='true'] {
	cursor: not-allowed;
	opacity: 0.65;
}

.al-btn-filled {
	background: #fff;
	color: #000;
}

.al-btn-filled:hover,
.al-btn-filled:focus-visible {
	background: transparent;
	color: #fff;
}

.al-course-cta__label,
.al-course-cta__price {
	display: inline-flex;
	align-items: center;
}

.al-course-cta__price {
	position: relative;
	padding-left: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.al-course-cta__price::before {
	position: absolute;
	left: 0;
	content: '·';
}

.al-hero-year-line {
	display: flex;
	width: min(100%, 400px);
	margin-top: clamp(30px, 4vh, 46px);
	align-items: center;
	gap: 20px;
	opacity: 0.82;
}

.al-year-hr {
	height: 1px;
	flex: 1 1 auto;
	background: #fff;
}

.al-year-text {
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.3em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Audience */
.al-audience {
	padding: clamp(72px, 8vw, 100px) 0;
	background-color: var(--al-rosa);
	color: #fff;
	text-align: center;
}

.al-audience h2 {
	margin: 0 0 40px;
	color: #fff;
	font-size: clamp(2.2rem, 5vw, 3.125rem);
	line-height: 1.08;
	text-wrap: balance;
}

.al-audience-list {
	display: inline-grid;
	max-width: 760px;
	margin: 0;
	padding: 0;
	gap: 15px;
	list-style: none;
	text-align: left;
}

.al-audience-list li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	font-size: 1.05rem;
	line-height: 1.5;
}

.al-audience-list i {
	margin-top: 0.22em;
	flex: 0 0 auto;
}

/* Features */
.al-features {
	padding: clamp(72px, 8vw, 100px) 0;
	background: #fff;
}

.al-features-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
	text-align: center;
}

.al-feat-item {
	min-width: 0;
}

.al-feat-icon-wrap {
	display: flex;
	height: 60px;
	margin-bottom: 15px;
	align-items: center;
	justify-content: center;
}

.al-feat-icon-wrap img {
	display: block;
	max-width: 72px;
	max-height: 60px;
	width: auto;
	height: auto;
}

.al-feat-item p {
	margin: 0;
	color: #333;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

/* Results */
.al-results {
	padding: clamp(72px, 8vw, 100px) 0;
	background: var(--al-crema);
}

.al-results h2 {
	margin: 0 0 20px;
	color: var(--al-marron);
	font-size: clamp(2.2rem, 5vw, 3.125rem);
	line-height: 1.08;
	text-align: center;
	text-wrap: balance;
}

.al-results-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 60px;
	font-size: 17px;
}

.subt02 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.2em;
  font-weight: 500;
  color: #705b58;
}

.al-res-item {
	display: flex;
	align-items: flex-start;
	line-height: 1.55;
}

.al-res-item .fa-circle-check {
	padding: 5px 10px 0 0;
	color: var(--al-rosa);
	font-size: 18px;
}

/* Curriculum */
.al-curriculum {
	padding: clamp(72px, 8vw, 100px) 0;
	background-color: var(--al-marron);
	color: #fff;
}

.al-curriculum h2 {
	margin: 0 0 50px;
	color: #fff;
	font-size: clamp(2.2rem, 5vw, 3.125rem);
	line-height: 1.08;
	text-align: center;
	text-wrap: balance;
}

.al-curriculum .tutor-mt-40 {
	margin-top: 0;
}

.al-curriculum .tutor-accordion-item {
	margin-bottom: 10px;
	border: 0;
	border-radius: 5px;
}

.al-curriculum .tutor-accordion-item-header {
	font-family: var(--al-font-body) !important;
	font-size: 16px !important;
	line-height: 1.4;
	text-transform: uppercase;
}

.al-curriculum .tutor-course-content-list-item {
	gap: 16px;
}

/* Instructor */
.al-instructor {
	padding: clamp(72px, 8vw, 100px) 0;
	background-color: var(--al-rosa);
}

.al-instructor-flex {
	display: flex;
	align-items: center;
	gap: clamp(40px, 6vw, 70px);
}

.al-instructor-content {
	flex: 1 1 auto;
	padding-right: clamp(0px, 4vw, 60px);
	color: #fff;
}

.al-instructor-content h2 {
	margin: 0 0 30px;
	color: #fff;
	font-size: clamp(2.2rem, 5vw, 3.45rem);
	line-height: 1.08;
	text-wrap: balance;
}

.txtAbout {
	margin: 0 0 20px;
	color: #fff;
	font-size: 18px;
	line-height: 1.65;
}

.txtAbout:last-child {
	margin-bottom: 0;
}

.al-instructor-img {
	flex: 0 1 420px;
	min-width: 0;
}

.al-instructor-img img {
	display: block;
	width: 100%;
	height: auto;
}

/* Footer CTA */
.al-footer-cta {
	display: flex;
	min-height: 600px;
	align-items: stretch;
	background-color: #fff;
	overflow: hidden;
}

.al-cta-side-img {
	position: relative;
	flex: 0 0 50%;
	min-height: 420px;
}

.al-cta-side-img img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.al-cta-side-content {
	display: flex;
	flex: 0 0 50%;
	padding: clamp(44px, 5vw, 70px);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.al-cta-side-content h3 {
	max-width: 500px;
	margin: 0 0 25px;
	color: var(--al-marron);
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.08;
	text-wrap: balance;
}

.al-cta-desc {
	max-width: 450px;
	margin: 0 0 36px;
	color: #666;
	line-height: 1.6;
}

.al-price-box {
	margin-bottom: 28px;
}

.al-price-label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.al-price-value {
	color: #000;
	font-family: var(--al-font-titles);
	font-size: clamp(3.4rem, 7vw, 5rem);
	line-height: 1;
}

.al-price-value .price,
.al-price-value .woocommerce-Price-amount,
.al-price-value .al-price-free {
	font: inherit;
}

.al-price-value del {
	font-size: 0.5em;
	opacity: 0.55;
}

.al-price-value ins {
	text-decoration: none;
}

.al-footer-cta-action {
	width: min(100%, 350px);
}

.al-footer-cta-action .al-course-cta-form,
.al-footer-cta-action .al-course-cta-form form {
	width: 100%;
}

.al-btn-cta {
	display: inline-flex;
	width: 100%;
	min-height: 58px;
	padding: 18px 28px;
	border: 1px solid var(--al-rosa);
	align-items: center;
	justify-content: center;
	background: var(--al-rosa);
	color: #fff !important;
	font-family: var(--al-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease;
}

.al-btn-cta:hover,
.al-btn-cta:focus-visible {
	border-color: var(--al-marron);
	background: var(--al-marron);
	color: #fff !important;
}

.al-payments {
	margin-top: 24px;
}

.al-payments img {
	display: block;
	max-width: min(100%, 300px);
	height: auto;
	margin-inline: auto;
}

@media (max-width: 1100px) {
	.al-container-icons {
		width: min(90vw, 1000px);
	}

	.al-features-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.al-container {
		width: min(100% - 30px, 1200px);
	}

	.al-container-icons {
		width: 100%;
		padding-inline: 15px;
	}

	.al-hero {
		min-height: 100svh;
		padding: 92px 0 42px;
	}

	.al-hero-content {
		width: min(100% - 30px, 620px);
	}

	.al-hero-category {
		margin-bottom: 14px;
		font-size: 0.72rem;
		letter-spacing: 0.22em;
	}

	.al-hero-title {
		max-width: 10ch;
		font-size: clamp(2.75rem, 14vw, 4.35rem);
		line-height: 0.98;
	}

	.al-hero-subtitle {
		margin-top: 22px;
		font-size: 1rem;
		line-height: 1.5;
	}

	.al-hero-actions {
		width: min(100%, 340px);
		margin-top: 28px;
	}

	.al-hero-actions .al-course-cta-form,
	.al-hero-actions .al-course-cta-form form,
	.al-hero-actions .al-course-cta {
		width: 100%;
	}

	.al-course-cta,
	.al-btn {
		min-height: 54px;
		padding: 14px 22px;
		font-size: 10px;
		letter-spacing: 0.13em;
	}

	.al-hero-year-line {
		width: min(100%, 330px);
		margin-top: 28px;
		gap: 14px;
	}

	.al-year-text {
		font-size: 9px;
		letter-spacing: 0.24em;
	}

	.al-audience,
	.al-features,
	.al-results,
	.al-curriculum,
	.al-instructor {
		padding: 64px 0;
	}

	.al-audience h2,
	.al-results h2,
	.al-curriculum h2 {
		margin-bottom: 20px;
	}

	.al-audience-list li {
		font-size: 1rem;
	}

	.al-features-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 15px;
	}

	.al-results-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		font-size: 16px;
	}

	.al-curriculum .tutor-accordion-item-header {
		font-size: 14px !important;
	}

	.al-instructor-flex {
		flex-direction: column;
		gap: 40px;
	}

	.al-instructor-content {
		padding-right: 0;
		text-align: center;
	}

	.al-instructor-img {
		width: min(100%, 350px);
		flex: none;
	}

	.txtAbout {
		font-size: 16px;
	}

	.al-footer-cta {
		min-height: 0;
		flex-direction: column;
	}

	.al-cta-side-img {
		width: 100%;
		height: min(70vw, 380px);
		min-height: 300px;
		flex: none;
	}

	.al-cta-side-content {
		width: 100%;
		padding: 48px 20px;
		flex: none;
	}

	.al-price-value {
		font-size: clamp(3.5rem, 18vw, 4.5rem);
	}
}

@media (max-width: 420px) {
	.al-features-grid {
		grid-template-columns: 1fr 1fr;
	}

	.al-feat-item p {
		font-size: 12px;
	}

	.al-course-cta {
		flex-wrap: wrap;
		gap: 7px 10px;
	}

	.al-course-cta__price {
		padding-left: 10px;
	}
}

@media (max-height: 650px) and (orientation: landscape) and (min-width: 769px) {
	.al-hero {
		min-height: 0;
		padding: 80px 0 44px;
	}

	.al-hero-title {
		font-size: clamp(2.8rem, 8.5vh, 4.5rem);
	}

	.al-hero-subtitle {
		margin-top: 18px;
		font-size: 0.95rem;
	}

	.al-hero-actions {
		margin-top: 22px;
	}

	.al-hero-year-line {
		margin-top: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.al-course-cta,
	.al-btn,
	.al-btn-cta {
		transition: none;
	}
}