/*
	Theme Name: AMFREE WordPress Theme
	Theme URI:
	Description: AMFREE WordPress Theme
	Version: 1.0.0
	Author: Boostmonitor/Hector Felan
	Author URI: https://boostmonitor.com
	Tags: AMFREE, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    SCROLLBAR STYLES
\*------------------------------------*/
/* Hide scrollbars for all browsers */
* {
    /* Firefox */
    scrollbar-width: none;
    /* IE and Edge */
    -ms-overflow-style: none;
}
/* Webkit browsers (Chrome, Safari, newer Edge) */
*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
}
html {
    /* Prevent pull-to-refresh bounce on iOS */
    overscroll-behavior-y: contain;
    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
}
body {
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

/*------------------------------------*\
    ROOT
\*------------------------------------*/
:root {
	/* Colors */
	--white: #fff;
	--dark: #080808;
	--secondary-dark : #0f0e0d;
	--tertiary-dark: #1d1b19;
	--dimwhite: #c8c8c8;
    --primary-color: #f09f36;
    --secondary-color: #fde275;
	--primary-text-color: #d3a562;
	--amfree-dark-blue: #0a0d0f;
	--amfree-mid-blue: #2e4158;
	--amfree-light-blue:#316daf;
	--amfree-dark-aqua: #0c1213;
	--amfree-mid-aqua: #345056;
	--amfree-light-aqua: #4694a8;
	--amfree-dark-purple: #181622;
	--amfree-darker-purple: #100f17;
	--amfree-mid-purple: #423d58;
	--amfree-light-purple: #6f63a7;

    /* Padding */
    --padding: 20px;
	--btn-padding: 1.5rem;

	/* Max Content Widths */
    --max-content-width: 1400px;
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
html {
	font-size: 65%;
}
body {
	max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
	font-family: 'Plus-Jakarta-Regular', sans-serif;
	font-size: 1.6rem;
	line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
	background: var(--secondary-dark);
}
.modal-open {
    overflow: hidden;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

h1 {
	font-weight: 100;
}

p {
	line-height: 1.6;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width: 100%;
	margin:0 auto;
	position: relative;
	overflow: hidden;
}
.main-loading-spinner-wrapper {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: radial-gradient(at bottom right, var(--amfree-dark-blue) 0%, #13191c 50%, #1a2431 100%);
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.main-loading-spinner-wrapper.hide {
	opacity: 0;
	pointer-events: none;
}
.main-loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.main-loading-spinner-img {
	width: 140px;
	height: auto;
	object-fit: contain;
}
.main-loading-balancing-circles {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 10px;
	margin-top: 20px;
}
.main-loading-balancing-circles span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--primary-color);
	animation: main-loading-balance 1s ease-in-out infinite;
}
.main-loading-balancing-circles span:nth-child(1) { animation-delay: 0s; }
.main-loading-balancing-circles span:nth-child(2) { animation-delay: 0.15s; }
.main-loading-balancing-circles span:nth-child(3) { animation-delay: 0.3s; }
@keyframes main-loading-balance {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
/* header */
.header {
	display: block;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding: var(--padding) 0;
	z-index: 10;
	border-radius: 0;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header--scrolled {
	top: 0 !important;
	background: var(--secondary-dark);
	backdrop-filter: blur(10px);
	padding: calc(var(--padding) / 2) 0;
}
.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--max-content-width);
	position: relative;
	margin: 0 auto;
	padding-left: var(--padding);
  	padding-right: var(--padding);
}
.logo {
	position: relative;
	z-index: 5;
}
.logo-img {
	width: 110px;
	height: auto;
	object-fit: contain;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header--scrolled .logo-img {
	width: 110px;
}
/* nav */
.nav {
	display: none;
	padding: 2rem 3rem;
	border: 1px solid rgba(255, 229, 111, 0.3);
	box-shadow: 0 0 20px rgba(255, 229, 111, 0.1),
				inset 0 0 5px rgba(255, 229, 111, 0.1);
	border-radius: 10px;
}
.header--scrolled .nav {
	border-color: transparent;
	box-shadow: unset;
}
.nav ul {
	display: flex;
	gap: 0 40px;
	padding: 0;
	margin: 0;
	align-items: center;
	list-style: none;
}
.nav ul li a {
	font-size: 1.6rem;
	color: var(--white);
}
.nav ul li a:hover,
.nav ul li a.colored:hover {
	background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.nav ul li a.colored {
	color: var(--white);
}
.nav ul li.current-menu-item a {
	background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.current-menu-item a {
	pointer-events: none;
}
.login-search {
	display: none;
	gap: 0 40px;
	font-size: 1.6rem;
	color: var(--white);
}
.login-search a {
	color: var(--white);
}
.login-search span {
	cursor: pointer;
	white-space: nowrap;
}
.login-search span:hover,
.login-search span.colored:hover {
	background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.login-search span.colored {
	color: var(--white);
}
.mobile-menu-button {
	display: block;
	position: relative;
	z-index: 5;
	width: 45px;
	height: 24px;
	cursor: pointer;
}
.mobile-menu-button span {
	position: absolute;
	background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-button span:nth-child(1) {
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	right: 0;
	top: 0;
}
.mobile-menu-button span:nth-child(2) {
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	right: 0;
	top: calc(50% - 1.5px);
}
.mobile-menu-button span:nth-child(3) {
	display: block;
	width: calc(100% - 10px);
	height: 3px;
	border-radius: 2px;
	right: 0;
	bottom: 0;
}
.mobile-menu-button.clicked span:nth-child(1) {
	transform: rotate(45deg);
	width: 70%;
	height: 2px;
	top: calc(50% - 1px);
}
.mobile-menu-button.clicked span:nth-child(2) {
	transform: rotate(-45deg);
	width: 70%;
	height: 2px;
	top: calc(50% - 1px);
}
.mobile-menu-button.clicked span:nth-child(3) {
	width: 0%;
	height: 0;
}
.mobile-menu-overlay {
	position: fixed;
	z-index: 3;
	top: -40px;
	left: 0;
	width: 100%;
	height: calc(100vh + 40px);
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-overlay.active {
	opacity: 1;
	pointer-events: auto;
}
#mobile-menu-wrapper {
	position: fixed;
	top: -40px;
	right: -400px;
	max-width: 400px;
	width: 100%;
	height: calc(100vh + 40px);
	background-color: var(--secondary-dark);
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	z-index: 4;
	padding: calc(var(--padding) * 8) var(--padding);
}
#mobile-menu-wrapper.active {
	right: 0;
}
#mobile-menu-wrapper > div ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#mobile-menu-wrapper > div ul li a {
	display:block;
	font-size: 1.8rem;
	padding: 10px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: var(--dimwhite);
}
#mobile-menu-wrapper > div ul li:last-child a {
	border-bottom: none;
}
#mobile-menu-wrapper .current-menu-item {
	background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.mobile-menu-contact-buttons,
.mobile-menu-social-networks {
	display: flex;
	gap: 0 10px;
	align-items: center;
	list-style: none;
	justify-content: flex-start;
	padding: 0;
	margin: 10px 0;
}
.mobile-menu-contact-buttons li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: transparent;
	color: var(--dimwhite);
	font-size: 2.6rem;
	border-radius: 10px;
}
.mobile-menu-social-networks li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: transparent;
	color: var(--dimwhite);
	font-size: 2rem;
	border-radius: 10px;
}
.mobile-menu-contact-buttons li a,
.mobile-menu-social-networks li a {
	opacity: 0.5;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-contact-buttons li a:hover,
.mobile-menu-social-networks li a:hover {
	border: 1px solid var(--dimwhite);
	background-color: var(--dimwhite);
	color: var(--secondary-dark);
	opacity: 1;
}
section {
	width: 100%;
	position: relative;
}
.inner-section {
	max-width: var(--max-content-width);
	width: 100%;
	position: relative;
	margin: 0 auto;
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
	display:block;
	background-color: var(--dark);
}
.amfree-footer-logo {
	fill: var(--dimwhite);
	width: 120px;
	height: auto;
	object-fit: contain;
}
.footer-social-networks {
	display: flex;
	align-items: center;
	gap: 0 10px;
	list-style: none;
	padding: 0;
	margin-top: 40px;
}
.footer-social-networks li {
	flex-shrink: 0;
}
.footer-social-networks li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background-color: var(--dimwhite);
	color: var(--dark);
	border-radius: 8px;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer-social-networks li a:hover {
	background-color: var(--white);
}
.footer-social-networks li a i {
	font-size: 1.8rem;
}
.footer ul:not(.footer-social-networks) {
	list-style: none;
	padding: 0;
}

.footer ul:not(.footer-social-networks) li a {
	display: block;
	font-size: 1.3rem;
	padding: 6px 0;
	color: var(--dimwhite);
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer ul:not(.footer-social-networks) li a:hover {
	color: var(--white);
}
.footer-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0 20px;
}
.footer-col {
	min-width: 160px;
	flex-shrink: 0;
}
.footer-col:nth-child(1) {
	width: calc(300px - 40px);
}
.footer-col:nth-child(5) {
	width: calc(400px - 40px);
}
.footer .footer-newsletter-inputs-wrapper {
	display: flex;
	gap: 0 10px;
}
.footer input[type="text"] {
	display: block;
	width: 120px;
	height: 40px;
	outline: none;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0 8px;
	font-size: 14px;
	margin: 10px 0;
	background-color: var(--dimwhite);
	flex-shrink: 0;
	text-transform: capitalize;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer input[type="email"] {
	display: block;
	width: 100%;
	height: 40px;
	outline: none;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0 8px;
	font-size: 14px;
	margin: 10px 0;
	background-color: var(--dimwhite);
	text-transform: lowercase;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer input[type="text"]::placeholder,
.footer input[type="email"]::placeholder {
	color: var(--secondary-dark);
	text-transform: capitalize;
}
.footer input[type="text"]:focus,
.footer input[type="email"]:focus {
	background-color: var(--white);
	border-color: var(--primary-color);
}
.footer form.footer-newsletter-form label[for="terms-conditions"] {
	display: flex;
	align-items: center;
	font-size: 13px;
	color: var(--dimwhite);
	cursor: pointer;
}
.footer form.footer-newsletter-form label[for="terms-conditions"] a {
	color: var(--dimwhite);
	text-decoration: none;
	margin-left: 4px;
}
.footer form.footer-newsletter-form label[for="terms-conditions"] a:hover {
	text-decoration: underline;
	color: var(--white);
}
.footer input[type="checkbox"] {
	background-color: var(--dimwhite);
	margin-right: 8px;
}

/*------------------------------------*\
    HOME PAGE
\*------------------------------------*/
.home-hero {
	position: relative;
	width: 100%;
	border-radius: 0px;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 90% 50%;
	background-attachment: fixed;
	z-index: 0;
	border-bottom: 1px solid var(--primary-color);
}
.home-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, rgb(16, 15, 23, 0.5) 50%, var(--amfree-dark-purple) 100%);
	z-index: 1;
}
.home-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-90deg, transparent 0%, rgb(16, 15, 23, 0.5) 50%, var(--amfree-dark-purple) 100%);
	z-index: 2;
}
.hero-content {
	position: relative;
	z-index: 3;
	max-width: var(--max-content-width);
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding-top: calc(var(--padding) * 4);
	padding-left: var(--padding);
	padding-right: var(--padding);
}
.hero-features {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 40px;
	margin-top: 40px;
	justify-content: center;
}
.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0 10px;
	margin-bottom: 20px;
}
.feature-count-wrapper {
	font-size: 1.6rem;
	color: var(--primary-color);
}
.feature-count-wrapper {
	font-size: 1.8rem;
}
.feature-text {
	font-size: 1.4rem;
	color: var(--dimwhite);
}
.hero-explore-more {
	position: absolute;
	bottom: 20px;
	left: calc(50% - 37px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.hero-explore-more i {
	animation: home-explore-more-bounce 2s infinite;
}
@keyframes home-explore-more-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}
/* Trainings Section */
.home-training-section {
	background: linear-gradient(to bottom, var(--amfree-dark-purple) 50%, var(--amfree-light-purple) 100%);
}
.home-training-section h2 b {
	display: block;
}
.home-training-thumbnail {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	object-position: 50% 50%;
}
.training-card__body {
	position: relative;
	padding: calc(var(--padding) * 2) var(--padding);
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
}
.training-card__icon {
	position: relative;
	width: 30px;
	height: 30px;
	fill: var(--secondary-color);
	margin-bottom: 10px;
}
#home-training-carousel-arrows {
	position: absolute;
	right: 50%;
	transform: translateX(50%) translateY(20px);
	bottom: 0;
	display: flex;
	gap: 0 10px;
}
.home-training-carousel-btn {
	border: 1px solid var(--white);
	outline: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.home-training-carousel-btn.embla__button--disabled {
	border-color: var(--dimwhite);
	opacity: 0.3;
	color: var(--dimwhite);
	pointer-events: none;
}
#home-trainers-carousel-arrows {
	display: flex;
	gap: 0 10px;
	align-items: center;
	justify-content: center;
}
@media (min-width: 768px) {
	#home-trainers-carousel-arrows {
		justify-content: flex-end;
		margin-top: 0;
	}
}
/* Join community section */
.home-join-our-community-section {
	background: linear-gradient(to bottom, var(--amfree-light-purple) 0%, var(--amfree-darker-purple) 100%);
}
.home-join-our-community-image-wrapper {
	max-width: 980px;
	position: relative;
	margin: 0 auto;
}
.home-join-our-community-image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: contain;
	margin-top: -60px;
}
/* Home Testimonials Section */
.home-testimonials-section h2 b {
	display: block;
	margin: 0 auto;
}
.testimonial-rating {
	display: flex;
}
.testimonial-rating span {
	font-size: 2rem;
	color: var(--primary-color);
	opacity: 0.4;
	margin-right: -5px;
}
.testimonial-rating span.filled {
	opacity: 1;
	background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
/* Home Events Section */
.home-events-section {
	background: linear-gradient(to bottom, transparent 0%, var(--amfree-dark-purple) 100%);
}
.home-events-section .inner-section {
	max-width: 980px;
}
.home-events-section h2 b {
	display: block;
	margin: 0 auto;
}
/* Blog section */
.home-blog-post-card-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center center;
}
.home-blog-post-card-content {
	position: relative;
	padding: var(--padding) var(--padding);
	height: 100%;
}
/*------------------------------------*\
    ABOUT US PAGE
\*------------------------------------*/
.about-us-hero {
	position: relative;
	width: 100%;
	border-radius: 0px;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 60% 40%;
	background-attachment: fixed;
	z-index: 0;
}
.about-us-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top left, rgba(33, 75, 119, 0.9) 0%, rgba(19, 24, 28, 0.95) 100%);
	z-index: 1;
}
.amfree-icon-background__bottom-right {
	position: absolute;
	z-index: 0;
	bottom: -100px;
	right: -100px;
	width: 900px;
	height: auto;
	object-fit: contain;
	opacity: 0.025 !important;
	pointer-events: none;
	/* transform: rotate(-45deg); */
}
.amfree-icon-background__top-right-up {
	position: absolute;
	z-index: 0;
	top: -300px;
	right: -100px;
	width: 900px;
	height: auto;
	object-fit: contain;
	opacity: 0.025 !important;
	pointer-events: none;
}
.amfree-icon-background__top-right {
	position: absolute;
	z-index: 0;
	top: -100px;
	right: -100px;
	width: 900px;
	height: auto;
	object-fit: contain;
	opacity: 0.025 !important;
	pointer-events: none;
}
.amfree-icon-background__center-center {
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	height: auto;
	object-fit: contain;
	opacity: 0.015 !important;
	pointer-events: none;
}
.amfree-icon-background__center-right {
	position: absolute;
	z-index: 0;
	top: 50%;
	right: -100px;
	transform: translateY(-50%);
	width: 900px;
	height: auto;
	object-fit: contain;
	opacity: 0.015 !important;
	pointer-events: none;
}
.about-us-hero-content {
	position: relative;
	z-index: 3;
	max-width: var(--max-content-width);
	width: 100%;
	margin: 0 auto;
}
/* About us History section */
.about-us-history {
	/* border-top: 1px solid var(--primary-color); */
	/* border-bottom: 1px solid var(--primary-color); */
}
.about-us-history .inner-section {
	position: relative;
	z-index: 3;
}
.about-us-history::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(70, 148, 168, 0.8) 50%, var(--amfree-dark-blue) 100%);
	z-index: 1;
}
.about-us-history::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-90deg, rgba(49, 110, 175, 0.5) 0%, var(--amfree-dark-blue) 100%);
	z-index: 2;
}
.about-us-mvm {
	background: linear-gradient(-90deg, rgba(49, 110, 175, 0.5) 0%, var(--amfree-dark-blue) 100%);
}
.about-us-mvm .mvm-card {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 100%);
	height: 100%;
}
/* Program Page */
.program-hero {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 65% 50%;
	background-attachment: fixed;
	overflow: hidden;
	position: relative;
}
.program-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at bottom right, rgba(12, 18, 19, 1) 0%, rgba(52, 80, 86, 0.9) 100%);
	z-index: 1;
}
.program-hero > .inner-section {
	position: relative;
	z-index: 3;
}
.program-hero-pillars-section {
	position: relative;
	z-index: 4;
	margin-top: -200px;
}
.pillar-card-content {
	height: 100%;
	background: radial-gradient(circle at bottom right, rgba(12, 18, 19, 1) 0%, rgba(52, 80, 86, 0.9) 100%) !important;
}
.pillar-card__icon {
	position: relative;
	width: 40px;
	height: 40px;
	fill: var(--primary-text-color);
	margin-bottom: 10px;
}
.program-training-post-image {
	position: absolute;
	height: calc(100% + 100px) !important;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	min-height: 200px;
	top:50%;
	transform: translateY(-50%);
	border: 1px solid var(--primary-color);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.program-training-post-content {
	padding-top: 40px;
	padding-bottom: 40px;
}
.program-training-post-content ul {
    list-style: none;
    padding-left: 20px;
}
.program-training-post-content ul li {
    padding-left: 28px;
    position: relative;
}
.program-training-post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 227.22 183.04'%3E%3Cpath fill='%234694a8' d='M199.17,183.04c-.53,0-1.06-.03-1.58-.07-.32-.02-.59-.04-.86-.05-24.42-.65-47.07-10.78-63.89-28.55-6.5,1.12-12.96,1.69-19.23,1.69s-12.74-.57-19.23-1.69c-16.82,17.77-39.47,27.9-63.89,28.55-.27,0-.54.03-.81.04-.58.04-1.1.07-1.64.07-.41,0-.82-.03-1.22-.06-.24-.02-.42-.03-.6-.03l-3.59-.07-.24-3.58c-.1-1.43-.19-2.84-.22-4.27,0-.21-.02-.42-.04-.63-.03-.43-.06-.86-.06-1.29,0-17.06,4.73-33.66,13.7-48.11C13.03,103.52,0,73.53,0,42.45,0,31.18,1.68,19.99,4.99,9.19c.36-1.18.77-2.29,1.17-3.36.18-.48.36-.96.53-1.44l.74-2.08,2.16-.44c.51-.1,1.02-.18,1.54-.25.3-.04.57-.08.84-.12.57-.1,1.15-.19,1.72-.27l.71-.1c5.1-.77,9.44-1.13,13.64-1.13,20.99,0,41.5,7.32,57.76,20.6,12.57,10.27,22.1,23.52,27.8,38.57,5.7-15.05,15.23-28.3,27.8-38.57C157.68,7.32,178.19,0,199.17,0c4.2,0,8.54.36,13.65,1.13l.68.1c.58.09,1.17.17,1.75.27.26.05.52.08.78.12.58.08,1.09.15,1.6.25l2.16.44.74,2.07c.16.44.32.87.48,1.31l.05.14c.38,1.02.81,2.17,1.17,3.35,3.31,10.8,4.99,21.99,4.99,33.26,0,31.08-13.03,61.07-35.8,82.54,8.97,14.45,13.7,31.05,13.7,48.11,0,.43-.03.86-.06,1.28-.02.22-.03.42-.04.63-.03,1.44-.12,2.79-.22,4.27l-.24,3.58-3.59.07c-.17,0-.35.02-.53.03-.47.03-.88.06-1.29.06Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.event-card-content {
	position: relative;
	height: 100%;
}
/* Blog Page */
.blog-hero-section {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-attachment: fixed;
	overflow: hidden;
	position: relative;
}
.blog-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at bottom right, var(--dark) 0%, rgba(15, 14, 13, 0.95) 50%, rgba(49, 43, 37, 0.9) 100%) !important;
	z-index: 1;
}
.blog-hero-section > .inner-section {
	position: relative;
	z-index: 3;
}
.blog-post-highlight-content > * {
	position: relative;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.blog-post-highlight-content::before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(49, 43, 37, 1) 0%, rgba(15, 14, 13, 1) 50%, rgba(49, 43, 37, 1) 100%);
}
.blog-post-highlight__content {
	position: relative;
	z-index: 3;
}
.blog-post-highlight__categories {
	display: none;
	gap: 0 20px;
	margin-bottom: 10px;
}
.blog-post-highlight__categories a {
	font-size: 11px;
	color: var(--white);
	text-decoration: none;
	font-family: 'Plus-Jakarta-Semibold', sans-serif;
	opacity: 0.5;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.blog-post-highlight__categories a:hover {
	opacity: 1;
	color: var(--primary-color)
}
.blog-post-highlight-image {
	position: relative;
	top: -20px;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	height: 250px;
	z-index: 10;
}
.blog-post-card {
	background: linear-gradient(to right, rgba(49, 43, 37, 1) 0%, rgba(15, 14, 13, 1) 50%, rgba(49, 43, 37, 1) 100%);
}

/* Infinite scroll sentinel (invisible trigger element) */
.blog-posts-sentinel {
	height: 1px;
}

/* Loading spinner shown while fetching next batch of posts */
.blog-posts-spinner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 40px 0;
}
.blog-posts-spinner__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--primary-color, #e0a800);
	animation: blog-spinner-bounce 1.2s infinite ease-in-out;
}
.blog-posts-spinner__dot:nth-child(2) { animation-delay: 0.2s; }
.blog-posts-spinner__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes blog-spinner-bounce {
	0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
	40%           { transform: scale(1);   opacity: 1; }
}

/* Single Blog Post */
/* Reading progress bar */
#reading-progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 4px;
	background: var(--primary-color);
	z-index: 99999;
	transition: width 0.05s linear;
	pointer-events: none;
}

.single-blog-hero {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-attachment: fixed;
	overflow: hidden;
	position: relative;
}
.single-blog-hero::before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at bottom left, rgba(15, 14, 13, 1) 0%, rgba(49, 43, 37, 0.8) 50%, rgba(49, 43, 37, 0) 100%);
}
.single-blog-hero .inner-section {
	z-index: 2;
}
.single-blog-content {
	background-color: #F8F5F0;
}
.single-blog-sidebar {
	border-radius: 12px;
	padding: var(--padding);
	position: relative;
	background-color: rgba(107, 86, 0, 0.1);
	overflow-y: auto;
}
.wp-block-heading:first-of-type {
	margin-top: 0;
}
.related-posts,
.other-posts,
.sidebar-categories,
.sidebar-newsletter {
	margin-bottom: 30px;
}
.related-posts-title,
.other-posts-title,
.sidebar-widget__title {
	border-bottom: 1px solid var(--dimwhite);
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.related-posts-list,
.sidebar-other-publications,
.sidebar-categories__list {
    list-style: none;
    padding-left: 0px;
}
.related-posts-list li,
.sidebar-other-publications li,
.sidebar-categories__list li {
    padding-left: 28px;
    position: relative;
	/* color: #e9c089; */
}
.related-posts-list li::before,
.sidebar-other-publications li::before,
.sidebar-categories__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    transform: translateY(-10%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 227.22 183.04'%3E%3Cpath fill='%23e9c089' d='M199.17,183.04c-.53,0-1.06-.03-1.58-.07-.32-.02-.59-.04-.86-.05-24.42-.65-47.07-10.78-63.89-28.55-6.5,1.12-12.96,1.69-19.23,1.69s-12.74-.57-19.23-1.69c-16.82,17.77-39.47,27.9-63.89,28.55-.27,0-.54.03-.81.04-.58.04-1.1.07-1.64.07-.41,0-.82-.03-1.22-.06-.24-.02-.42-.03-.6-.03l-3.59-.07-.24-3.58c-.1-1.43-.19-2.84-.22-4.27,0-.21-.02-.42-.04-.63-.03-.43-.06-.86-.06-1.29,0-17.06,4.73-33.66,13.7-48.11C13.03,103.52,0,73.53,0,42.45,0,31.18,1.68,19.99,4.99,9.19c.36-1.18.77-2.29,1.17-3.36.18-.48.36-.96.53-1.44l.74-2.08,2.16-.44c.51-.1,1.02-.18,1.54-.25.3-.04.57-.08.84-.12.57-.1,1.15-.19,1.72-.27l.71-.1c5.1-.77,9.44-1.13,13.64-1.13,20.99,0,41.5,7.32,57.76,20.6,12.57,10.27,22.1,23.52,27.8,38.57,5.7-15.05,15.23-28.3,27.8-38.57C157.68,7.32,178.19,0,199.17,0c4.2,0,8.54.36,13.65,1.13l.68.1c.58.09,1.17.17,1.75.27.26.05.52.08.78.12.58.08,1.09.15,1.6.25l2.16.44.74,2.07c.16.44.32.87.48,1.31l.05.14c.38,1.02.81,2.17,1.17,3.35,3.31,10.8,4.99,21.99,4.99,33.26,0,31.08-13.03,61.07-35.8,82.54,8.97,14.45,13.7,31.05,13.7,48.11,0,.43-.03.86-.06,1.28-.02.22-.03.42-.04.63-.03,1.44-.12,2.79-.22,4.27l-.24,3.58-3.59.07c-.17,0-.35.02-.53.03-.47.03-.88.06-1.29.06Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.related-posts-list li a,
.sidebar-other-publications li a,
.sidebar-categories__list li a {
	margin-bottom: 15px;
	display: block;
	font-family: 'Plus-Jakarta-Medium', sans-serif;
}
.related-posts-list li a:hover,
.sidebar-other-publications li a:hover,
.sidebar-categories__list li a:hover {
	text-decoration: underline;
}
.sidebar-newsletter-form input[type="text"] {
	display: block;
	width: 100%;
	height: 40px;
	outline: none;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0 8px;
	font-size: 14px;
	margin: 10px 0;
	background-color: var(--white);
	flex-shrink: 0;
	text-transform: capitalize;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.sidebar-newsletter-form input[type="email"] {
	display: block;
	width: 100%;
	height: 40px;
	outline: none;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0 8px;
	font-size: 14px;
	margin: 10px 0;
	background-color: var(--white);
	flex-shrink: 0;
	text-transform: lowercase;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.sidebar-newsletter-form input[type="text"]::placeholder,
.sidebar-newsletter-form input[type="email"]::placeholder {
	color: var(--secondary-dark);
	text-transform: capitalize;
}
.sidebar-newsletter-form input[type="text"]:focus,
.sidebar-newsletter-form input[type="email"]:focus {
	background-color: var(--white);
	border-color: var(--primary-color);
}
.sidebar-newsletter-form label[for="terms-conditions"] {
	display: flex;
	align-items: center;
	font-size: 13px;
	color: var(--secondary-dark);
	cursor: pointer;
}
.sidebar-newsletter-form label[for="terms-conditions"] a {
	color: var(--secondary-dark);
	text-decoration: none;
	margin-left: 4px;
}
.sidebar-newsletter-form label[for="terms-conditions"] a:hover {
	text-decoration: underline;
}
.sidebar-newsletter-form input[type="checkbox"] {
	background-color: var(--primary-color);
	margin-right: 8px;
}
.sidebar-newsletter-submit-button {
	display: inline-block;
	background-color: transparent;
	color: var(--secondary-dark);
	border: none;
	outline: none;
	padding: 0;
	border-radius: 8px;
	font-size: 1.3rem;
	cursor: pointer;
	text-align: center;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.newsletter-default-profile-link-wrapper {
	display: block;
	text-align: center;
	margin-top: 50px;
	color: var(--white);
}
.newsletter-default-profile-link-wrapper form button.tnp-submit {
	display: flex;
	width: fit-content;
	align-items: center;
	margin: 0 auto;
	gap: 0 8px;
	padding-top: calc(var(--btn-padding) - 5px);
	padding-bottom: var(--btn-padding);
	padding-left: calc(var(--btn-padding) * 1.5);
	padding-right: calc(var(--btn-padding) * 1.5);
	border-radius: 8px;
	font-size: 1.3rem;
	font-family: 'Plus-Jakarta-SemiBold', sans-serif;
	transition: 0.3s ease;
	cursor: pointer;
	line-height: 1;
	outline: none;
	background: linear-gradient(to top, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: var(--dark);
	outline: none;
	border: none;
}
.newsletter-default-profile-link-wrapper form button.tnp-submit::after {
	content: '\f08e';
	font-family: 'Font Awesome 7 Whiteboard', sans-serif;
	font-weight: 400;
	margin-left: 8px;
}
/* Contact page */
.contact-us-hero-section {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-attachment: fixed;
	overflow: hidden;
	position: relative;
}
.contact-us-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, rgba(66, 61, 88, 0.7) 100%);
	z-index: 1;
}
.contact-us-hero-section > .inner-section {
	position: relative;
	z-index: 3;
}
/* Contact Us — Map */
.amfree-contact-map-overlay {
	position: absolute;
	z-index: 4;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(66, 61, 88, 0.5) 0%, transparent 100%);
	pointer-events: none;
}
.amfree-contact-map {
	position: relative;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 400px;
	height: 100%;
}
/* Map marker */
.amfree-map-marker {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 2.6rem;
	color: var(--amfree-mid-purple);
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
	line-height: 1;
}
/* Map popup */
.amfree-map-popup-wrapper .leaflet-popup-content-wrapper {
	background: var(--amfree-mid-purple);
	border: 1px solid var(--amfree-mid-purple);
	border-radius: 8px;
	color: #fff;
	font-family: inherit;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.amfree-map-popup-wrapper .leaflet-popup-tip {
	background: var(--amfree-mid-purple);
}
.amfree-map-popup-wrapper .leaflet-popup-close-button {
	color: var(--primary-color) !important;
}
.amfree-map-popup-logo {
	display: block;
	width: 140px;
	height: auto;
	object-fit: contain;
}

/* Override Leaflet attribution to blend with dark theme */
.amfree-contact-map .leaflet-control-attribution {
	background: transparent !important;
	color: rgba(72, 72, 72, 0.5) !important;
	font-size: 1rem;
}
.amfree-contact-map .leaflet-control-attribution a {
	color: rgba(72, 72, 72, 0.5) !important;
}

/* -----------------------------------------------
   Phone Prefix Dropdown
----------------------------------------------- */
.phone-prefix-selector {
	position: relative;
	width: 100%;
}
.phone-prefix-trigger {
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	height: 48px;
	padding: 0 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	cursor: pointer;
	color: var(--white);
	font-size: 1.4rem;
	transition: border-color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
	margin-top: 6px;
}
.phone-prefix-trigger:hover,
.phone-prefix-trigger:focus {
	border-color: var(--primary-color);
	background: rgba(240, 159, 54, 0.08);
	outline: none;
}
.phone-prefix-selector.is-open .phone-prefix-trigger {
	border-color: var(--primary-color);
	background: rgba(240, 159, 54, 0.08);
}
.phone-prefix-flag {
	font-size: 1.8rem;
	line-height: 1;
	flex-shrink: 0;
}
.phone-prefix-dial {
	flex: 1;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dimwhite);
}
.phone-prefix-chevron {
	font-size: 1rem;
	color: var(--dimwhite);
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.phone-prefix-selector.is-open .phone-prefix-chevron {
	transform: rotate(180deg);
}

/* Dropdown panel */
.phone-prefix-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 260px;
	background: var(--amfree-darker-purple);
	border: 1px solid var(--primary-color);
	border-radius: 10px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
	z-index: 9999;
	overflow: hidden;
}
.phone-prefix-dropdown[hidden] {
	display: none;
}

/* Search bar */
.phone-prefix-search-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
}
.phone-prefix-search-icon {
	color: var(--dimwhite);
	font-size: 1.2rem;
	flex-shrink: 0;
}
.phone-prefix-search {
	flex: 1;
	border: none;
	background: transparent;
	color: var(--white);
	font-size: 1.3rem;
	outline: none;
	padding: 6px 10px;
	border-radius: 8px;
}
.phone-prefix-search::placeholder {
	color: rgba(200, 200, 200, 0.4);
}

/* Country list */
.phone-prefix-list {
	list-style: none;
	margin: 0;
	padding: 6px 0;
	max-height: 160px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--primary-color) transparent;
}
.phone-prefix-list::-webkit-scrollbar {
	display: block !important;
	width: 4px !important;
}
.phone-prefix-list::-webkit-scrollbar-track {
	background: transparent;
}
.phone-prefix-list::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 2px;
}
.phone-prefix-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	cursor: pointer;
	font-size: 1.3rem;
	color: var(--dimwhite);
	transition: background 0.15s ease, color 0.15s ease;
}
.phone-prefix-item:hover {
	background: rgba(240, 159, 54, 0.1);
	color: var(--white);
}
.phone-prefix-item.selected {
	color: var(--primary-color);
	background: rgba(240, 159, 54, 0.08);
}
.phone-prefix-item-flag {
	font-size: 1.6rem;
	line-height: 1;
	flex-shrink: 0;
}
.phone-prefix-item-name {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.phone-prefix-item-dial {
	font-size: 1.2rem;
	color: rgba(200, 200, 200, 0.45);
	flex-shrink: 0;
}
.phone-prefix-item.selected .phone-prefix-item-dial {
	color: var(--primary-color);
}
.contact-us-option-card-content {
	display: flex;
	gap: 40px 0;
	flex-direction: column;
	justify-content: space-between;
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
	height: 100%;
}
.contact-us-option-card-icon i {
	font-size: 2.8rem;
	color: var(--primary-color);
}

/* -----------------------------------------------
   Contact Form
----------------------------------------------- */
.contact-form .bm-row {
	margin-left: -10px !important;
	margin-right: -10px !important;
	background-color: var(--amfree-mid-purple);
}
.contact-form .bm-row > * {
	padding: 10px !important;
}
.contact-form label {
	display: block;
	width: 100%;
	font-family: 'Plus-Jakarta-Bold', sans-serif;
	color: var(--white);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="password"],
.contact-form textarea {
	display: block;
	width: 100%;
	height: 48px;
	padding: 0 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: var(--white);
	font-size: 1.4rem;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	margin-top: 6px;
}
.contact-form input[name="name"],
.contact-form input[name="surname"] {
	text-transform: capitalize;
}
.contact-form input[name="email"] {
	text-transform: lowercase;
}
.contact-form textarea {
	height: auto;
	min-height: 140px;
	padding: 12px;
	resize: vertical;
	line-height: 1.6;
	font-family: 'Plus-Jakarta-Regular', sans-serif;
}
.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form input[type="password"]::placeholder,
.contact-form textarea::placeholder {
	color: rgba(200, 200, 200, 0.4);
}
.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:hover,
.contact-form input[type="tel"]:hover,
.contact-form input[type="password"]:hover,
.contact-form textarea:hover {
	border-color: rgba(255, 255, 255, 0.25);
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="password"]:focus,
.contact-form textarea:focus {
	border-color: var(--primary-color);
	background: rgba(240, 159, 54, 0.08);
	outline: none;
}

/* Input error state */
.contact-form .error-input {
	border-color: #e05c5c !important;
	background: rgba(224, 92, 92, 0.06) !important;
}
.contact-form .error-input:focus {
	border-color: #e05c5c !important;
}
.phone-prefix-selector.error-input .phone-prefix-trigger {
	border-color: #e05c5c !important;
	background: rgba(224, 92, 92, 0.06) !important;
}

/*------------------------------------*\
    FAQ ACCORDION
\*------------------------------------*/
.contact-faq-content {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
}
.contact-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: -1px;
}

.contact-faq-item:last-child {
    border-bottom: none;
}

.contact-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 4px;
    text-align: left;
    outline: none;
    transition: opacity 0.2s ease;
}

.contact-faq-trigger:hover {
    opacity: 0.85;
}

.contact-faq-trigger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.contact-faq-question {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    flex: 1;
}

.contact-faq-item.is-open .contact-faq-question {
    color: var(--primary-color);
}

.contact-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.25s ease,
                background 0.25s ease;
}

.contact-faq-item.is-open .contact-faq-icon {
    transform: rotate(45deg);
    background: rgba(240, 159, 54, 0.12);
    border-color: var(--primary-color);
}

.contact-faq-answer-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-faq-answer-wrapper:not([hidden]) {
    display: block;
}

.contact-faq-answer {
    padding: 0 4px 22px;
}

.contact-faq-answer p {
    font-size: 1.5rem;
    color: var(--dimwhite);
    line-height: 1.75;
}

/*------------------------------------*\
    SINGLE EVENT PAGE
\*------------------------------------*/

/* Countdown bar */
.single-event-remaining-time-bar {
	position: fixed;
	top: 0;
	z-index: 9999;
	width: 100%;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(90deg, rgba(24, 22, 34, 1) 0%, rgba(66, 61, 88, 0.5) 100%);
	backdrop-filter: blur(4px);
}

.event-countdown {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.countdown-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.countdown-value {
	display: flex;
	gap: 1px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: var(--primary-color);
	font-family: 'Courier New', Courier, monospace
}

.countdown-label {
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--dimwhite);
	font-family: 'Plus-Jakarta-Medium', sans-serif;
}

.countdown-separator {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: var(--dimwhite);
	opacity: 0.4;
	padding-top: 0;
}

/* Individual digit flip — new digit enters from top, old exits down */
.digit {
	display: inline-block;
	position: relative;
	overflow: hidden;
	height: 1em;
	line-height: 1;
}

.digit-current,
.digit-incoming {
	display: block;
	line-height: 1;
}

.digit-incoming {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-100%);
}

.digit.is-flipping .digit-current {
	animation: digit-exit-down 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.digit.is-flipping .digit-incoming {
	animation: digit-enter-from-top 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes digit-exit-down {
	from { transform: translateY(0); }
	to   { transform: translateY(100%); }
}

@keyframes digit-enter-from-top {
	from { transform: translateY(-100%); }
	to   { transform: translateY(0); }
}

.single-event-remaining-time-bar-timezone {
	letter-spacing: 2px;
}

.countdown-value[data-unit="days"].two-digit .digit:first-child {
	display: none;
}

.single-event-hero-section {
	position: relative;
	width: 100%;
	border-radius: 0px;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-attachment: fixed;
	z-index: 0;
	border-bottom: 1px solid var(--primary-color);
}
.single-event-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, rgb(16, 15, 23, 0.5) 100%);
	z-index: 1;
}
.single-event-hero-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-90deg, transparent 0%, rgb(16, 15, 23, 0.5) 50%, var(--amfree-dark-purple) 100%);
	z-index: 2;
}
.single-event-hero-section > .inner-section {
	position: relative;
	z-index: 3;
	max-width: var(--max-content-width);
	width: 100%;
	margin: 0 auto;
	/* display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%; */
	padding-top: calc(var(--padding) * 2);
	padding-left: var(--padding);
	padding-right: var(--padding);
}
.single-event-training-image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.section-grid-3-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
.single-event-feature-wrapper {
	position: relative;
}
.single-event-feature-item {
	padding: 20px;
	position: relative;
	z-index: 1;
	height: 100%;
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.single-event-feature-item svg {
	width: 40px;
	height: 40px;
	object-fit: contain;
	fill: var(--primary-color)
}
.single-event-feature-item p {
	font-family: 'Plus-Jakarta-Medium', sans-serif;
	color: var(--white);
}
.single-event-trainers-section .bm-row {
	margin-left: -10px !important;
	margin-right: -10px !important;
}
.single-event-trainers-section .bm-row > * {
	padding: 10px !important;
}
.trainer-image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: top center;
	aspect-ratio: 3 / 4;
}
.single-event-amfree-logo {
	width: 150px;
	height: auto;
	object-fit: contain;
}
.single-event-pre-requisites-list {
	padding: 0;
	margin: 0;
	list-style: none
}
.single-event-pre-requisites-item {
	position: relative;
}
.single-event-pre-requisites-item::before {
	content: '\f00c';
	font-family: 'Font Awesome 7 Pro';
	position: relative;
	margin-right: 8px;
	font-size: 1.6rem;
	color: var(--primary-color);
	line-height: 1;
}
.price-line-through {
	text-decoration: line-through;
	color: var(--primary-color);
	opacity: 0.3;
}
.price-line-through::after {
	content: '\f178';
	font-family: 'Font Awesome 7 Pro';
	font-weight: 300;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
	text-decoration: none !important;
}
.seats-taken-bar {
	position: relative;
	height: 6px;
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	overflow: hidden;
}
.seats-taken-bar-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
	border-radius: 3px;
	transition: width 0.3s ease;
}
.border-none {
	border: none;
}
.border-color-white {
	border-color: var(--white);
}
.border-opacity-10 {
	border-color: rgba(255, 255, 255, 0.1) !important;
}

/*------------------------------------*\
    SINGLE TRAINING PAGE
\*------------------------------------*/
.single-training-hero-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 90% 50%;
	background-attachment: fixed;
	z-index: 0;
	border-bottom: 1px solid var(--primary-color);
}
.single-training-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, rgb(16, 15, 23, 0.5) 50%, var(--amfree-dark-purple) 100%);
	z-index: 1;
}
.single-training-hero-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-90deg, transparent 0%, rgb(16, 15, 23, 0.5) 50%, var(--amfree-dark-purple) 100%);
	z-index: 2;
}
.single-training-hero-section > .inner-section {
	position: relative;
	z-index: 3;
}
.single-training-content-section ul {
    list-style: none;
    padding-left: 20px;
}
.single-training-content-section ul li {
    padding-left: 38px;
    position: relative;
}
.single-training-content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 227.22 183.04'%3E%3Cpath fill='%23423d58' d='M199.17,183.04c-.53,0-1.06-.03-1.58-.07-.32-.02-.59-.04-.86-.05-24.42-.65-47.07-10.78-63.89-28.55-6.5,1.12-12.96,1.69-19.23,1.69s-12.74-.57-19.23-1.69c-16.82,17.77-39.47,27.9-63.89,28.55-.27,0-.54.03-.81.04-.58.04-1.1.07-1.64.07-.41,0-.82-.03-1.22-.06-.24-.02-.42-.03-.6-.03l-3.59-.07-.24-3.58c-.1-1.43-.19-2.84-.22-4.27,0-.21-.02-.42-.04-.63-.03-.43-.06-.86-.06-1.29,0-17.06,4.73-33.66,13.7-48.11C13.03,103.52,0,73.53,0,42.45,0,31.18,1.68,19.99,4.99,9.19c.36-1.18.77-2.29,1.17-3.36.18-.48.36-.96.53-1.44l.74-2.08,2.16-.44c.51-.1,1.02-.18,1.54-.25.3-.04.57-.08.84-.12.57-.1,1.15-.19,1.72-.27l.71-.1c5.1-.77,9.44-1.13,13.64-1.13,20.99,0,41.5,7.32,57.76,20.6,12.57,10.27,22.1,23.52,27.8,38.57,5.7-15.05,15.23-28.3,27.8-38.57C157.68,7.32,178.19,0,199.17,0c4.2,0,8.54.36,13.65,1.13l.68.1c.58.09,1.17.17,1.75.27.26.05.52.08.78.12.58.08,1.09.15,1.6.25l2.16.44.74,2.07c.16.44.32.87.48,1.31l.05.14c.38,1.02.81,2.17,1.17,3.35,3.31,10.8,4.99,21.99,4.99,33.26,0,31.08-13.03,61.07-35.8,82.54,8.97,14.45,13.7,31.05,13.7,48.11,0,.43-.03.86-.06,1.28-.02.22-.03.42-.04.63-.03,1.44-.12,2.79-.22,4.27l-.24,3.58-3.59.07c-.17,0-.35.02-.53.03-.47.03-.88.06-1.29.06Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.training-event-sidebar {
	position: relative;
	top: 0;
}
.training-events-list {
	display: block;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.training-events-list > * {
	padding: 10px 15px;
	background-color: var(--amfree-mid-purple);
	border-radius: 8px;
	margin-bottom: 10px;
}
.training-trainers-list-heading {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.training-trainers-list {
	margin-left: -10px !important;
	margin-right: -10px !important;
}
.training-trainers-list > * {
	padding: 10px !important;
}
.training-trainers-list > * img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: top center;
	border-radius: 8px;
	overflow: hidden;
}
.check-list {
	list-style: none;
	padding-left: 0;
}
.check-list li {
	position: relative;
}
.check-list.market-color-primary li::before {
	content: '\f00c';
	font-family: 'Font Awesome 7 Pro';
	position: relative;
	margin-right: 8px;
	font-size: 1.6rem;
	color: var(--primary-color);
	line-height: 1;
}
.check-list.text-color-white li {
	color: var(--white);
}
.payment-icons {
	display: flex;
	list-style: none;
	gap: 0 8px;
	padding: 0;
}
.payment-icons li img {
	width: 47px;
	height: auto;
	aspect-ratio: 2 / 1.5;
	object-fit: cover;
	object-position: center center;
	border-radius: 6px;
	overflow: hidden;
}

.event-details-action-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.event-details-action-buttons button {
	width: 100%;
	display: block !important;
}
#stripe-name {
	text-transform: capitalize;
}
.event-details-flex-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.event-details-flex-buttons > *,
.event-details-flex-buttons button {
	display: block;
	width: 100%;
	white-space: nowrap;
}

/*------------------------------------*\
   	POLICY PAGE
\*------------------------------------*/
.policy-section-hero {
	background: radial-gradient(circle at bottom right, var(--dark) 0%, rgba(15, 14, 13, 0.95) 50%, rgba(49, 43, 37, 0.9) 100%) !important;
}
.policy-content-section {
	background-color: var(--white);
}
/*------------------------------------*\
    SINGLE TRAINER PAGE
\*------------------------------------*/
.single-trainer-hero-section {

}
.single-trainer-hero-image {
    perspective: 800px;
}
.trainer-hero-image {
    animation: tilt-3d 2s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
	animation-delay: 1s;
    transform-style: preserve-3d;
    will-change: transform;
}
.trainer-hero-image::before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: -200%;
	width: 200%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.1) 50%, transparent 65%, transparent 100%);
	transform: skewX(20deg);
	animation: shine 2s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
	animation-delay: 1s;
}
@keyframes tilt-3d {
    0%   { transform: rotateY(0deg); }
    100%  { transform: rotateY(-6deg); }
}

@keyframes shine {
	0% {left: -200%}
	100% {left: 200%}
}
.trainer-specialty-item [class^="trainer-specialty-item-"] {
    padding: 20px;
	height: 100%;
	position: relative;
}
.trainer-specialty-item-dark {
	background: radial-gradient(circle at bottom right, var(--dark) 0%, var(--secondary-dark) 50%, rgb(49, 43, 37) 100%);
}
.trainer-specialty-item-blue {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 100%);
}
.trainer-specialty-item-aqua {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-aqua) 0%, var(--amfree-mid-aqua) 100%);
}
.trainer-specialty-item-purple  {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
}
.trainer-specialty-icon i {
	font-size: 3.2rem;
	background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	padding: 5px 0;
}
.single-trainer-training-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center center;
}
.single-trainer-training-details {
	position: relative;
	height: 100%;
}
.single-trainer-training-details-dark {
	background: radial-gradient(circle at bottom right, var(--dark) 0%, var(--secondary-dark) 50%, rgb(49, 43, 37) 100%);
}
.single-trainer-training-details-blue {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 100%);	
}
.single-trainer-training-details-aqua {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-aqua) 0%, var(--amfree-mid-aqua) 100%);
}
.single-trainer-training-details-purple {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
}
.single-trainer-hero-section-dark {
	background: radial-gradient(circle at bottom right, var(--dark) 0%, var(--secondary-dark) 50%, rgb(49, 43, 37) 100%);
}
.single-trainer-hero-section-blue {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 100%);
}
.single-trainer-hero-section-aqua {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-aqua) 0%, var(--amfree-mid-aqua) 100%);
}
.single-trainer-hero-section-purple {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
}
.single-trainer-trainers-carousel .trainer-card__details {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.single-trainer-trainers-carousel.single-trainer-training-details-dark .trainer-card__details {
	background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
}
.single-trainer-trainers-carousel.single-trainer-training-details-blue .trainer-card__details {
	background: linear-gradient(to top, var(--amfree-mid-blue) 0%, rgba(46, 65, 88, 0) 100%);	
}
.single-trainer-trainers-carousel.single-trainer-training-details-aqua .trainer-card__details {
	background: linear-gradient(to top, var(--amfree-mid-aqua) 0%, rgba(52, 80, 86, 0) 100%);
}
.single-trainer-trainers-carousel.single-trainer-training-details-purple .trainer-card__details {
	background: linear-gradient(to top, var(--amfree-mid-purple) 0%, rgba(66, 61, 88, 0) 100%);
}
.single-trainer-trainers-carousel .trainer-card:hover .trainer-card__details {
	bottom: 0;
}
.single-trainer-training-events-list {
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
.single-trainer-training-events-item {
	padding: 20px;
	border-radius: 12px;
	border: 1px solid var(--primary-color);
}
.single-trainer-training-events-item-dark {
	background: radial-gradient(circle at bottom right, var(--dark) 0%, var(--secondary-dark) 50%, rgb(49, 43, 37) 100%);
}
.single-trainer-training-events-item-blue {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 100%);
}
.single-trainer-training-events-item-aqua {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-aqua) 0%, var(--amfree-mid-aqua) 100%);
}
.single-trainer-training-events-item-purple {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
}

/*------------------------------------*\
    ADMIN PANEL PAGE
\*------------------------------------*/
.admin-panel-hero {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 100%);
}
.admin-panel-content {
	background: linear-gradient(to bottom, var(--white) 25%, #e8e8e8 100%);
}
.admin-panel-avatar {
	flex-shrink: 0;
	position: relative;
	border-radius: 50%;
	background-color: var(--amfree-mid-blue);
	width: 150px;
	height: 150px;
	top: -30px;
}
.admin-panel-name {
	padding-top: 0;
	flex-shrink: 0;
}
.admin-panel-avatar .fa-user {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--amfree-mid-blue);
	color: var(--primary-color);
	outline: 5px solid var(--white);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	font-size: 50px;
}
.admin-panel-avatar img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: 5px solid var(--white);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	object-fit: cover;
	object-position: top center;
}
.admin-panel-avatar .fa-pencil {
	position: absolute;
	z-index: 3;
	bottom: 4px;
	right: 10px;
	color: var(--amfree-mid-blue);
	font-weight: 600;
	font-size: 1.6rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: var(--white);
	border-radius: 50%;
	border: 2px solid var(--amfree-mid-blue);
}
.admin-panel-user-information-wrapper {
	margin-top: -50px;
}
.admin-panel-user-information-fields {
	margin-top: 30px;
	margin-left: -10px !important;
	margin-right: -10px !important;
}
.admin-panel-user-information-fields > * {
	padding: 10px !important;
}
.admin-panel-user-information-wrapper label {
	display: block;
	margin: 0 0 8px;
	font-family: 'Plus-Jakarta-Bold', sans-serif;
	color: var(--amfree-mid-blue);
}
.admin-panel-user-information-fields input {
	display: block;
	width: 100%;
	height: 48px;
	padding: 0 12px;
	border: 1px solid var(--amfree-light-blue);
	border-radius: 8px;
	color: var(--amfree-mid-blue);
	font-size: 1.6rem;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	font-family: 'Plus-Jakarta-Medium', sans-serif;
}
.password-error-message {
	display: none;
	background-color: var(--white);
	color: red;
	padding: 20px 20px 20px 25px;
	border-left: 5px solid red;
	margin-top: 10px;
	font-size: 14px;
}
.admin-panel-trainings-section {
	background: linear-gradient(to top, var(--white) 0%, #e8e8e8 100%);
	border-top: 2px solid var(--amfree-mid-blue);
}
.admin-panel-qr-code {
	border: 1px solid var(--amfree-mid-blue);
}
.admin-panel-schedule-list {
	display: block;
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--amfree-mid-blue);
}
.admin-panel-schedule-list th,
.admin-panel-schedule-list td {
	border: 1px solid var(--amfree-mid-blue);
	padding: 8px;
	text-align: left;
	font-size: 1.4rem;
}
.admin-panel-schedule-list th {
	background-color: var(--amfree-mid-blue);
	color: var(--white);
}
.admin-panel-schedule-list td:first-child {
	white-space: nowrap;
}
.admin-panel-contact-list {
	list-style: none;
	padding-left: 20px;
}
/*------------------------------------*\
    COMPONENTS
\*------------------------------------*/
.pre-title {
	font-size: 1.6rem;
}
.pre-title-primary {
	color: var(--primary-color);
}
.pre-title-secondary {
	color: var(--secondary-color);
}

/*------------------------------------*\
	FONT STYLING
\*------------------------------------*/
.hero-content h1 {
	color: var(--white, #fff);
	max-width: 700px;
}
.hero-content h1 b {
	background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.hero-description {
	color: var(--white, #fff);
	font-size: 1.4rem;
	max-width: 600px;
	line-height: 1.4;
	margin-top: 0;
}
.hero-cta {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
/*------------------------------------*\
	NEWSLETTER PAGE
\*------------------------------------*/
.newsletter-logo-img {
	width: 120px;
	height: auto;
	object-fit: contain;
}
/*------------------------------------*\
	PADDING AND MARGIN CLASSES
\*------------------------------------*/
.pad-20 {
	padding: 20px;
}
.pad-40-20 {
	padding: 40px 20px;
}
.pad-20-40 {
	padding: 20px 40px;
}
.pad-40 {
	padding: 40px;
}
.pad-20-0 {
	padding: 20px 0;
}
.pt-0 {
	padding-top: 0;
}
.pt-20 {
	padding-top: 20px;
}
.pt-30 {
	padding-top: 30px;
}
.pt-40 {
	padding-top: 40px;
}
.pt-50 {
	padding-top: 50px;
}
.pr-20 {
	padding-right: 20px;
}
.pl-20 {
	padding-left: 20px;
}
.pt-100 {
	padding-top: 100px;
}
.pt-125 {
	padding-top: 125px;
}
.pt-150 {
	padding-top: 150px;
}
.pt-200 {
	padding-top: 200px;
}
.pb-10 {
	padding-bottom: 10px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-100 {
	padding-bottom: 100px;
}
.pb-150 {
	padding-bottom: 150px;
}
.pb-200 {
	padding-bottom: 200px;
}
.mt-0 {
	margin-top: 0;
}
.mt-10 {
	margin-top: 10px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.mt-40 {
	margin-top: 40px;
}
.mt-50 {
	margin-top: 50px;
}
.mt-100 {
	margin-top: 100px;
}
.mb-0 {
	margin-bottom: 0;
}
.mb-5 {
	margin-bottom: 5px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mb-100 {
	margin-bottom: 100px;
}
.block {
	display: block;
}
.fit-content {
	width: fit-content;
}
.max-width-400 {
	max-width: 400px;
}
.max-width-500 {
	max-width: 500px;
}
.max-width-600 {
	max-width: 600px;
}
.max-width-700 {
	max-width: 700px;
}
.max-width-980 {
	max-width: 980px;
}
.max-width-1100 {
	max-width: 1100px;
}
.max-width-1200 {
	max-width: 1200px;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.mx-unset {
	margin-left: unset;
	margin-right: unset;
}
.fit-content {
	width: fit-content;
}
.position-relative {
	position: relative;
}
.position-no-relative {
	position: unset;
}
.height-100vh {
	height: 100vh;
}
.height-100p {
	height: 100%;
}
.bm-list-disc li::marker {
	list-style: disc;
	padding-left: 20px;
}
.min-height-480 {
	min-height: 480px;
}
.no-pointer-events {
	pointer-events: none !important;
}
.border-top {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.border-bottom {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.border-color-white {
	border-color: var(--white);
}
.border-opacity-10 {
	border-color: rgba(255, 255, 255, 0.1);
}
.border-color-mid-blue {
	border-color: var(--amfree-mid-blue) !important;
}
/*------------------------------------*\
	BUTTONS
\*------------------------------------*/
.btn {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 0 8px;
	padding-top: calc(var(--btn-padding) - 5px);
	padding-bottom: var(--btn-padding);
	padding-left: calc(var(--btn-padding) * 1.5);
	padding-right: calc(var(--btn-padding) * 1.5);
	border-radius: 8px;
	font-size: 1.3rem;
	transition: 0.3s ease;
	cursor: pointer;
	line-height: 1;
	outline: none;
}
.btn i {
	font-size: 1.8rem !important;
	position: relative;
	top: 1px;
}
.btn-medium {
	padding-top: calc(var(--btn-padding) - 4px) !important;
	padding-bottom: calc(var(--btn-padding) - 4px) !important;
	padding-left: calc(var(--btn-padding) * 1.5) !important;
	padding-right: calc(var(--btn-padding) * 1.5) !important;
	font-size: 1.4rem !important;
}
.btn-primary {
	background: var(--primary-color);
	color: var(--white);
}
.btn-secondary {
	background: var(--secondary-color, #59358c);
	color: var(--white);
}
.btn-primary-gradient {
	background: linear-gradient(to top, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: var(--dark);
	outline: none;
	border: none;
}
.btn-primary-gradient:hover {
	color: var(--dark);
}
.btn-light {
	background: linear-gradient(to top, var(--dimwhite) 0%, var(--white) 100%);
	color: var(--dark);
	outline: none;
	border: none;
}
.btn-light:hover {
	color: var(--dark);
}
.btn-dark {
	background: linear-gradient(to top, var(--dark) 0%, #40362f 100%);
	color: var(--white);
}
.btn-dark:hover {
	color: var(--white);
}
.btn:hover {
	opacity: 0.9;
}
.footer-newsletter-submit-button {
	display: inline-block;
	background-color: transparent;
	color: var(--dimwhite);
	border: none;
	outline: none;
	padding: 0;
	border-radius: 8px;
	font-size: 1.3rem;
	cursor: pointer;
	text-align: center;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer-newsletter-submit-button:hover {
	color: var(--primary-color);
}
.footer .copyright {
	display: block;
	width: 100%;
	padding: 20px 0;
	border-top: 1px solid rgba(153, 153, 153, 0.2);
	text-align: center;
	font-size: 1.2rem;
	color: var(--dimwhite);
}
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
@font-face {
	font-family:'Plus-Jakarta-Regular';
	src:url('../../assets/fonts/plus-jakarta-sans/PlusJakartaSans-Regular.ttf');
}
@font-face {
	font-family:'Plus-Jakarta-Medium';
	src:url('../../assets/fonts/plus-jakarta-sans/PlusJakartaSans-Medium.ttf');
}
@font-face {
	font-family:'Plus-Jakarta-Semibold';
	src:url('../../assets/fonts/plus-jakarta-sans/PlusJakartaSans-SemiBold.ttf');
}
@font-face {
	font-family:'Plus-Jakarta-Bold';
	src:url('../../assets/fonts/plus-jakarta-sans/PlusJakartaSans-Bold.ttf');
}
@font-face {
	font-family:'Plus-Jakarta-Extrabold';
	src:url('../../assets/fonts/plus-jakarta-sans/PlusJakartaSans-ExtraBold.ttf');
}
@font-face {
	font-family:'Libre-Baskerville-Regular';
	src:url('../../assets/fonts/Libre_Baskerville/static/LibreBaskerville-Regular.ttf');
}
@font-face {
	font-family:'Libre-Baskerville-Bold';
	src:url('../../assets/fonts/Libre_Baskerville/static/LibreBaskerville-Bold.ttf');
}
@font-face {
	font-family:'Libre-Baskerville-Regular-Italic';
	src:url('../../assets/fonts/Libre_Baskerville/static/LibreBaskerville-SemiBoldItalic.ttf');
}
@font-face {
	font-family:'Libre-Baskerville-Bold-Italic';
	src:url('../../assets/fonts/Libre_Baskerville/static/LibreBaskerville-BoldItalic.ttf');
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 100;
}
.feature-text,
.footer ul:not(.footer-social-networks) li a {
	font-family: 'Plus-Jakarta-Medium', sans-serif !important;
}
.nav ul li a,
.login-search span,
.pre-title {
	font-family: 'Plus-Jakarta-Semibold', sans-serif !important;
}
.btn,
#mobile-menu-wrapper ul li a {
	font-family: 'Plus-Jakarta-Bold', sans-serif !important;
}
b,
.feature-count-wrapper {
	font-family: 'Plus-Jakarta-Extrabold', sans-serif !important;
}
.plus-jakarta-regular {
	font-family: 'Plus-Jakarta-Regular', sans-serif !important;
}
.plus-jakarta-medium {
	font-family: 'Plus-Jakarta-Medium', sans-serif !important;
}
.plus-jakarta-semibold {
	font-family: 'Plus-Jakarta-Semibold', sans-serif !important;
}
.plus-jakarta-bold {
	font-family: 'Plus-Jakarta-Bold', sans-serif !important;
}
.plus-jakarta-extrabold {
	font-family: 'Plus-Jakarta-Extrabold', sans-serif !important;
}
.libre-baskerville-regular {
	font-family: 'Libre-Baskerville-Regular', serif !important;
}
.libre-baskerville-regular-italic {
	font-family: 'Libre-Baskerville-Regular-Italic', serif !important;
}
.libre-baskerville-bold {
	font-family: 'Libre-Baskerville-Bold', serif !important;
}
.libre-baskerville-bold-italic {
	font-family: 'Libre-Baskerville-Bold-Italic', serif !important;
}
.courier-new-regular {
	font-family: 'Courier New', monospace !important;
}
.courier-new-bold {
	font-family: 'Courier New', monospace !important;
	font-weight: bold;
}
.font-size-6 {
	font-size: 0.6rem;
}
.font-size-8 {
	font-size: 0.8rem;
}
.font-size-10 {
	font-size: 1rem;
}
.font-size-12 {
	font-size: 1.2rem;
}
.font-size-13 {
	font-size: 1.3rem;
}
.font-size-14 {
	font-size: 1.4rem;
}
.font-size-16 {
	font-size: 1.6rem;
}
.font-size-18 {
	font-size: 1.8rem;
}
.font-size-20 {
	font-size: 2rem;
}
.font-size-24 {
	font-size: 2.4rem;
}
.font-size-32 {
	font-size: 3.2rem;
}
.font-size-48 {
	font-size: 4.8rem;
}
.font-size-64 {
	font-size: 6.4rem;
}
.font-size-72 {
	font-size: 7.2rem;
}
.font-size-96 {
	font-size: 9.6rem;
}
.line-height-12 {
	line-height: 1.2;
}
.line-height-14 {
	line-height: 1.4;
}
.line-height-16 {
	line-height: 1.6;
}
.line-height-18 {
	line-height: 1.8;
}
.line-height-20 {
	line-height: 2;
}
.line-height-24 {
	line-height: 2.4;
}
.line-height-32 {
	line-height: 3.2;
}
.line-height-48 {
	line-height: 4.8;
}
.text-color-white {
	color: var(--white) !important;
}
.text-color-dimwhite {
	color: var(--dimwhite) !important;
}
.text-color-semitransparent-white {
	color: rgba(255, 255, 255, 0.2) !important;
}
.text-color-primary {
	color: var(--primary-text-color) !important;
}
.text-color-secondary {
	color: var(--secondary-color) !important;
}
.text-color-dark {
	color: var(--dark) !important;
}
.text-color-secondary-dark {
	color: var(--secondary-dark) !important;
}
.text-color-gradient-primary {
	background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.text-color-gradient-dark {
	background: linear-gradient(45deg, var(--dark) 0%, #614633 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.text-color-light-blue {
	color: var(--amfree-light-blue) !important;
}
.text-color-mid-blue {
	color: var(--amfree-mid-blue) !important;
}
.text-color-dark-blue {
	color: var(--amfree-dark-blue) !important;
}
.text-color-light-aqua {
	color: var(--amfree-light-aqua) !important;
}
.text-color-mid-aqua {
	color: var(--amfree-mid-aqua) !important;
}
.text-color-dark-aqua {
	color: var(--amfree-dark-aqua) !important;
}
.text-color-light-purple {
	color: var(--amfree-light-purple) !important;
}
.text-color-mid-purple {
	color: var(--amfree-mid-purple) !important;
}
.text-color-dark-purple {
	color: var(--amfree-dark-purple) !important;
}
.text-decoration-underline {
	text-decoration: underline;
}
.text-decoration-none {
	text-decoration: none !important;
}
.bm-heading-5 {
	font-size: 1.6rem;
}
.text-uppercase {
	text-transform: uppercase;
}
/*------------------------------------*\
    HEADINGS
\*------------------------------------*/

/*------------------------------------*\
    ELEMENTS
\*------------------------------------*/
.dark-radial-gradient-background-rtl {
	background: radial-gradient(circle at bottom right, var(--dark) 0%, var(--secondary-dark) 50%, rgb(49, 43, 37) 100%);
}
.dark-radial-gradient-background-ltr {
	background: radial-gradient(circle at bottom left, var(--dark) 0%, var(--secondary-dark) 50%, rgb(49, 43, 37) 100%);
}
.dark-aqua-radial-gradient-background-rtl {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-aqua) 0%, var(--amfree-mid-aqua) 100%) !important;
}
.dark-aqua-radial-gradient-background-ltr {
	background: radial-gradient(circle at bottom left, var(--amfree-dark-aqua) 0%, var(--amfree-mid-aqua) 100%);
}
.dark-blue-radial-gradient-background-ltr {
	background: radial-gradient(circle at bottom left, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 100%);
}
.dark-blue-radial-gradient-background-rtl {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 100%);
}
.dark-purple-radial-gradient-background-rtl {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
}
.mid-blue-solid-background {
	background-color: var(--amfree-mid-blue);
}
.aqua-radial-gradient-background-semitransparent {
	background: radial-gradient(circle at bottom right, rgba(12, 18, 19, 0.8) 0%, rgba(52, 80, 86, 0.5) 100%);
}
.mid-aqua-solid-background {
	background-color: var(--amfree-mid-aqua);
}
.golden-border {
	background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--white), var(--primary-color)) border-box;
	border: 1px solid transparent;
}
.golden-border-top-bottom {
	background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--white), var(--primary-color)) border-box;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
}
.blue-radial-gradient-background {
	background: radial-gradient(circle at bottom right, var(--amfree-dark-blue) 0%, var(--amfree-mid-blue) 50%, var(--amfree-light-blue) 100%);
}
.blue-linear-gradient-background-to-top {
	background: linear-gradient(to top, var(--amfree-dark-blue), var(--amfree-mid-blue), var(--amfree-light-blue));
}
.border-radius-10 {
	border-radius: 10px;
}
.border-radius-12 {
	border-radius: 12px;
}
.overflow-hidden {
	overflow: hidden;
}
.overflow-x-hidden {
	overflow-x: hidden;
}
.overflow-y-hidden {
	overflow-y: hidden;
}
.overflow-y-auto {
	overflow-y: auto;
}
.card-box-shadow {
	box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.5);
}
.border-bottom-1-primary-semitransparent {
	border-bottom: 1px solid rgba(240, 159, 54, 0.3);
}
blockquote {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 20px 40px;
	font-family : 'Plus-Jakarta-Medium', sans-serif
}
blockquote::before {
	content: '';
    position: absolute;
    right: 20px;
    bottom: -5px;
    aspect-ratio: 3 / 2;
    height: 50%;
    background-image: url('img/icons/amfree-blockquote-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
	opacity: 0.3
}
.blockquote-background {
	background-color: rgba(253, 226, 117, 0.3);
}
.warning-section-description {
	padding: 10px;
	border: 1px solid var(--primary-color);
	border-radius: 12px;
	background-color: rgba(240, 159, 54, 0.239);
	color: var(--white) !important;
}
/*------------------------------------*\
    ICONS
\*------------------------------------*/
.arrow-right::after {
	content: '\f08e';
	font-family: 'Font Awesome 7 Whiteboard', sans-serif;
	font-weight: 400;
	margin-left: 8px;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {
	.pad-sm-40 {
		padding: 40px !important;
	}
}
@media only screen and (min-width:768px) {
	.header {
		top: var(--padding);
	}
	.hero-content h1 {
		font-size: 5.2rem;
	}
	.home-hero {
		background-position: 50% 50%;
	}
	.pre-title {
		font-size: 2rem;
	}
	.hero-description {
		font-size: 1.8rem;
		line-height: 1.6;
	}
	.bm-section-description {
		font-size: 1.8rem;
		line-height: 1.6;
	}
	.hero-cta {
		flex-direction: row;
		align-items: flex-start;
	}
	.hero-features {
		justify-content: flex-start;
	}
	.feature-item {
		align-items: flex-start;
	}
	.bm-heading-2,
	.home-training-section h2,
	.home-join-our-community-section h2 {
		font-size: 4.2rem;
	}
	.bm-heading-3 {
		font-size: 3.2rem;
	}
	.bm-heading-4 {
		font-size: 2.4rem;
	}
	.bm-heading-5 {
		font-size: 1.8rem;
	}
	#home-training-carousel-arrows {
		position: absolute;
		right: var(--padding);
		transform: translateX(0%);
	}
	.home-testimonials-section h2 b {
		margin: 0;
	}
	.btn {
		font-size: 1.6rem;
	}
	.btn i {
		font-size: 2rem;
	}
	/* About us page */
	.about-us-hero {
		background-position: 50% 40%;
	}
	.bm-heading-1 {
		font-size: 4.8rem;
	}
	.pt-md-50 {
		padding-top: 50px !important;
	}
	.pad-md-40 {
		padding: 40px !important;
	}
	.pad-md-80 {
		padding: 80px !important;
	}
	.pad-md-20-40 {
		padding: 20px 40px !important;
	}
	.pt-md-200 {
		padding-top: 200px !important;
	}
	.pt-md-300 {
		padding-top: 300px !important;
	}
	.mt-md-40 {
		margin-top: 40px !important;
	}
	.blog-post-highlight-content::before {
		background: linear-gradient(to right, rgba(49, 43, 37, 1) 0%, rgba(15, 14, 13, 1) 50%, rgba(15, 14, 13, 0) 100%) !important;
	}
	.blog-post-highlight-image {
		top: 0;
		height: 100%;
		position: absolute;
		z-index: 0;
	}
	.blog-post-highlight__categories {
		display: flex;
	}
	.single-blog-sidebar {
		position: sticky;
	}
	.amfree-contact-map-overlay {
		width: 50%;
	}
	.amfree-contact-map {
		position: absolute;
		width: 50%;
		height: 100%;
	}
	.training-event-sidebar {
		position: sticky;
		top: 150px;
	}
	.border-md-left {
		border-left: 1px solid rgba(255, 255, 255, 0.08);
	}
	.border-md-right {
		border-right: 1px solid rgba(255, 255, 255, 0.08);
	}
	.admin-panel-avatar .fa-user {
		width: 150px;
		height: 150px;
		font-size: 50px;
	}
	.admin-panel-avatar img {
		width: 150px;
		height: 150px;
	}
	.admin-panel-avatar-name {
		margin-top: -30px;
	}
	.event-details-flex-buttons {
		flex-direction: row;
	}
}
@media only screen and (min-width:1024px) {
	.nav {
		display: block;
	}
	.login-search {
		display: flex;
	}
	.mobile-menu-button {
		display: none;
	}
	.event-details-action-buttons {
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
	}
	.event-details-action-buttons button {
		width: fit-content;
		display: block !important;
	}
}
@media only screen and (min-width:1140px) {
	.logo-img {
		width: 140px;
	}
	.header--scrolled .logo-img {
		width: 100px;
	}
}
@media only screen and (min-width:1280px) {
	
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}
/*------------------------------------*\
    WORD SPLIT EFFECTS
\*------------------------------------*/
.animate-words,
.animate-letters,
.animate-all {
	display: block;
	position: relative;
	white-space: pre-wrap;
}
.word-wrapper,
.letter-wrapper,
.text-wrapper {
	display: inline-block;
	overflow: hidden;
	position: relative;
	vertical-align: top;
}
.word,
.letter,
.text {
	display: inline-block;
	position: relative;
	transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	will-change: transform, opacity;
    opacity: 0;
}
.letter.fade-in {
	opacity: 1;
}
.word.from-top,
.letter.from-top,
.text.from-top {
	transform: translateY(-100%);
}
.word.from-bottom,
.letter.from-bottom,
.text.from-bottom {
	transform: translateY(100%);
}
.word.from-left,
.letter.from-left,
.text.from-left {
	transform: translateX(-100%);
}
.word.from-right,
.letter.from-right,
.text.from-right {
	transform: translateX(100%);
}
.word.animate,
.letter.animate,
.text.animate {
	transform: translate(0, 0);
    opacity: 1;
}

/*------------------------------------*\
    ANIMATE EFFECTS
\*------------------------------------*/
.animate-parent {
	display: contents;
	height: fit-content;
	overflow: hidden;
}
.animate-effect {
	opacity: 0;
}
.animate-fade-in {
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-blur-out {
	filter: blur(10px);
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-from-top {
	transform: translateY(-34px);
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-from-bottom {
	opacity: 0;
	transform: translateY(34px);
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-from-left {
	opacity: 0;
	transform: translateX(-34px);
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-from-right {
	opacity: 0;
	transform: translateX(34px);
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-fade-in.active {
	opacity: 1;
}
.animate-blur-out.active {
	filter: blur(0);
	opacity: 1;
}
.animate-from-top.active {
	opacity: 1;
	transform: translateY(0px);
}
.animate-from-bottom.active {
	opacity: 1;
	transform: translateY(0px);
}
.animate-from-left.active {
	opacity: 1;
	transform: translateX(0px);
}
.animate-from-right.active {
	opacity: 1;
	transform: translateX(0px);
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
/* ============================================================
   Embla Carousel — Training Section
   ============================================================ */
.embla--training {
    --slide-size: 100%;
    --slide-spacing: 20px;
}
@media (min-width: 768px) {
    .embla--training {
		--slide-size: 50%;
	}
}
@media (min-width: 1024px) {
    .embla--training {
		--slide-size: 33.333%;
	}
}
@media (min-width: 1140px) {
    .embla--training {
		--slide-spacing: 40px;
	}
}
.embla--training .embla__viewport {
    overflow: hidden;
}
.embla--training .embla__container {
    display: flex;
    touch-action: pan-y pinch-zoom;
    margin-left: calc(var(--slide-spacing) * -1);
}
.embla--training .embla__slide {
    flex: 0 0 var(--slide-size);
    min-width: 0;
	max-width: calc(100% - 1px);
	height: 100%;
	display: flex;
	align-items: stretch;
    padding-left: var(--slide-spacing);
	padding-bottom: 20px;
}
.embla--training .embla__slide__content {
    height: 100%;
	background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--white), var(--primary-color)) border-box; /* gradient border */
    border: 1px solid transparent;
    border-radius: 22px; /* works! */
	overflow: hidden;
	box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.5);
}
/* ============================================================
   Embla Carousel — Trainers Section
   ============================================================ */
.embla--trainers {
	--slide-size: 100%;
	--slide-spacing: 20px;
}
@media (min-width: 480px) {
	.embla--trainers {
		--slide-size: 50%;
	}
}
@media (min-width: 768px) {
	.embla--trainers {
		--slide-size: 33.333%;
	}
	.trainer-card__photo-img {
		aspect-ratio: 3 / 4 !important;
	}
}
@media (min-width: 1024px) {
	.embla--trainers {
		--slide-size: 25%;
	}
}
@media (min-width: 1140px) {
	.embla--trainers {
		--slide-spacing: 30px;
	}
}
.embla--trainers .embla__viewport {
	overflow: hidden;
}
.embla--trainers .embla__container {
	display: flex;
	touch-action: pan-y pinch-zoom;
	margin-left: calc(var(--slide-spacing) * -1);
}
.embla--trainers .embla__slide {
	flex: 0 0 var(--slide-size);
	min-width: 0;
	padding-left: var(--slide-spacing);
}
.embla--trainers .embla__slide__content {
	height: 100%;
}
.trainer-card__photo-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: top center;
	display: block;
	position: relative;
	transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.trainer-card__details {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, rgb(52, 80, 86, 0.8) 50%, var(--amfree-dark-aqua) 100%);
	display: flex;
	align-items: flex-end;
	transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.embla--trainers .embla__slide:hover .trainer-card__photo-img {
	transform: translateY(-10px) scale(1.05);
}
.embla--trainers .embla__slide:hover .trainer-card__details {
	bottom: 0 !important;
}
.trainer-card__details-inner {
	position: relative;
	padding: var(--padding);
}
/* ============================================================
   Embla Carousel — Testimonials Section
   ============================================================ */
.embla--testimonials {
	--slide-size: 100%;
	--slide-spacing: 40px;
	background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--white), var(--primary-color)) border-box;
	border: 1px solid transparent;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.5);
}
.embla--testimonials .embla__viewport {
	overflow: hidden;
	padding: 4px 0 12px;
	background: radial-gradient(circle at bottom right, var(--amfree-dark-purple) 0%, var(--amfree-mid-purple) 100%);
}
.embla--testimonials .testimonials-quote-icon {
	position: absolute;
	z-index: 0;
	right: var(--padding);
	bottom: 0;
	width: 350px;
	height: auto;
	object-fit: contain;
}
.embla--testimonials .embla__container {
	display: flex;
	touch-action: pan-y pinch-zoom;
	margin-left: calc(var(--slide-spacing) * -1);
}
.embla--testimonials .embla__slide {
	flex: 0 0 var(--slide-size);
	min-width: 0;
	padding-left: var(--slide-spacing);
}
.embla--testimonials .embla__slide__content {
	height: 100%;
	width: 100%;
}

/* ============================================================
   Event Registration Carousel (event-details.php)
   Two full-width slides: details → form. Drag disabled.
   ============================================================ */
.embla--event-registration .embla__viewport {
	overflow: hidden;
}
.embla--event-registration .embla__container {
	display: flex;
	touch-action: pan-y pinch-zoom; /* allow vertical scroll; horizontal drag blocked by watchDrag:false in JS */
}
.embla--event-registration .embla__slide {
	flex: 0 0 100%;
	min-width: 0;
}

/* ── Event registration form — reuses .contact-form input styles ─────────── */

/* The form uses .contact-form class so all existing input/label styles apply. */
/* Below are only the elements unique to the registration flow. */

/* Verification code step (slides in after first submit) */
.registration-verify-step {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
	margin-top: 0;
	background-color: var(--amfree-mid-purple);
}
.registration-verify-step.is-visible {
	max-height: 400px;
	opacity: 1;
	padding: 0 20px 20px 20px;
}

/* Info box inside the verification step */
.verify-note-box {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: rgba(240, 159, 54, 0.08);
	border: 1px solid rgba(240, 159, 54, 0.25);
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 16px;
}
.verify-note-icon {
	flex-shrink: 0;
	font-size: 2rem;
	color: var(--primary-color);
	margin-top: 2px;
}
.verify-note-text {
	margin: 0;
}

/* Large centered code input */
.contact-form .verify-code-label input.verify-code-input,
.verify-code-label input.verify-code-input {
	letter-spacing: 0.45em;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	height: 64px;
	caret-color: transparent;
}

/* ── Registration / Login panel switcher ─────────────────────────────────── */
.reg-forms-switcher {
	position: relative;
	overflow: hidden;
	transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reg-panel {
	width: 100%;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.reg-panel--login {
	position: absolute;
	top: 0;
	left: 1px;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	width: calc(100% - 2px);
}
.reg-forms-switcher.show-login .reg-panel--register {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}
.reg-forms-switcher.show-login .reg-panel--login {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

/* Forgot-password panel — same off-screen-below behaviour as login panel */
.reg-panel--forgot {
	position: absolute;
	top: 0;
	left: 1px;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	width: calc(100% - 2px);
}
.reg-forms-switcher.show-forgot .reg-panel--login {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}
.reg-forms-switcher.show-forgot .reg-panel--forgot {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
/* When the verify step is used inside the forgot-password panel (not sliding in
   below a form row), add top padding so content doesn't touch the card edge. */
.reg-panel--forgot .registration-verify-step.is-visible {
	padding-top: 20px;
	max-height: 600px;
}

/* Newsletter note */
.reg-newsletter-note {
	margin-bottom: 6px;
}

/* Inline link-style button */
.btn-link {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	display: inline;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Password visibility toggle */
.password-toggle-wrapper {
	position: relative;
}
.password-toggle-wrapper input[type="password"],
.password-toggle-wrapper input[type="text"] {
	padding-right: 44px !important;
}
.password-toggle-btn {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	color: inherit;
	opacity: 0.55;
	font-size: 1.4rem;
	line-height: 1;
	display: flex;
	align-items: center;
}
.password-toggle-btn:hover {
	opacity: 1;
}

/* Success state */
.registration-success {
	display: none;
}
.reg-success-check {
	text-align: center;
	margin-bottom: 8px;
}
.reg-success-icon {
	font-size: 4rem;
	color: var(--primary-color);
}

/* Alumno info card */
.reg-alumno-info {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 16px;
	margin-top: 16px;
}
.reg-info-row {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0 0 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	margin-bottom: 10px;
}
.reg-info-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.reg-info-label {
	display: block;
	text-transform: capitalize;
}
.reg-info-value {
	display: block;
}

/* "Not you?" logout note below the user info card */
.reg-not-you-note {
	margin-top: 14px;
	margin-bottom: 0;
	line-height: 1.5;
}

/* Purchase-blocked notice */
.purchase-blocked-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}
.purchase-blocked-icon {
	font-size: 1.8rem;
	margin-top: 2px;
	flex-shrink: 0;
	color: rgba(255, 255, 255, 0.55);
}
.purchase-blocked-notice .text-color-primary.purchase-blocked-icon {
	color: var(--primary-color);
}
.purchase-blocked-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}

/* Payment action buttons (right column — success state) */
.payment-action-buttons {
	display: none;
	flex-direction: column;
	gap: 14px;
}
.btn-payment {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 24px;
	border-radius: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	cursor: pointer;
	border: none;
	width: 100%;
	transition: opacity 0.2s ease, transform 0.15s ease;
	text-align: center;
}
.btn-payment:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}
.btn-payment:active {
	transform: translateY(0);
}
.btn-payment-card {
	background: linear-gradient(to right, #fde275, #f09f36);
	color: #100f17;
}
.btn-payment-paypal {
	background: #003087;
	color: #fff;
}

/* ── Stripe card form (slide-down in right payment column) ───────────────── */
#stripe-form-wrapper {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
#stripe-form-wrapper.is-open {
	max-height: 900px;
	opacity: 1;
}
.stripe-form-inner {
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
}
/* Label text above each Stripe field (mirrors .contact-form label) */
.stripe-field-label {
	display: block;
	width: 100%;
	font-family: 'Plus-Jakarta-Bold', sans-serif;
	color: var(--white);
}
/* Row wrapper — full-width by default */
.stripe-field-row {
	margin-top: 14px;
}
/* Side-by-side row: expiry + CVC */
.stripe-field-row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
/* Hosted Stripe iframes (cardNumber, cardExpiry, cardCvc) */
.stripe-field-el {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 14px 12px;
	margin-top: 6px;
	transition: border-color 0.2s ease;
}
.stripe-field-el.StripeElement--focus {
	border-color: var(--primary-color);
}
.stripe-field-el.StripeElement--invalid {
	border-color: #ff5555;
}
/* Name on card input reuses contact-form input styles — just needs margin-top */
.stripe-form-inner input[type="text"] {
	margin-top: 6px;
}
/* Error text shown below the fields */
#stripe-card-errors {
	color: #ff5555;
	font-size: 1.3rem;
	min-height: 18px;
	margin: 10px 0;
	line-height: 1.4;
}

/* PayPal button container — the PayPal SDK renders its button iframe here */
#paypal-button-container {
	margin-top: 14px;
	display: none;
}
#paypal-button-container.is-open {
	display: block;
}

/* ── Registration form — date-of-birth selectors & extra fields ───────────── */

/* Small label shown above the DOB row (not a <label> for= since it covers 3 inputs) */
.reg-field-label {
	display: block;
	margin-bottom: 6px;
}

/* Row that holds the three DOB selectors side by side */
.dob-selectors-row {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

/* Day takes less space, month a bit more, year the most */
.dob-selectors-row #reg-dob-day   { flex: 1 1 60px;  min-width: 0; }
.dob-selectors-row #reg-dob-month { flex: 2 1 120px; min-width: 0; }
.dob-selectors-row #reg-dob-year  { flex: 1.5 1 90px; min-width: 0; }

/* Override trigger height/padding to match .contact-form inputs (48px) */
.dob-select .events-custom-select__trigger {
	height: 48px;
	padding: 0 12px;
	border-radius: 8px;
	font-size: 1.4rem;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}
.dob-select.events-custom-select[data-value] .events-custom-select__trigger {
	color: #fff;
}
.dob-select .events-custom-select__label {
	font-size: 1.4rem;
}
/* Error state */
.dob-select.error-input .events-custom-select__trigger {
	border-color: #e05c5c;
	background: rgba(224, 92, 92, 0.06);
}

/* Month/year dropdown needs to be wider than the trigger */
#reg-dob-month .events-custom-select__dropdown {
	min-width: 150px;
}
#reg-dob-year .events-custom-select__dropdown {
	min-width: 100px;
}

/* Optional badge next to the company label */
.reg-optional-badge {
	display: inline-block;
	font-size: 1.1rem;
	color: rgba(240, 159, 54, 0.75);
	background: rgba(240, 159, 54, 0.1);
	border: 1px solid rgba(240, 159, 54, 0.25);
	border-radius: 4px;
	padding: 1px 6px;
	margin-left: 6px;
	vertical-align: middle;
	text-transform: capitalize;
	letter-spacing: 0.04em;
}


.testimonial-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
	min-height: 100%;
	overflow: hidden;
	padding: calc(var(--padding) * 2);
}
.testimonial-person {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 18px;
}
.testimonial-person__details {
	flex: 1 1 auto;
	min-width: 0;
}
.testimonial-avatar {
	width: 120px;
	height: 150px;
	border-radius: 20px;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid var(--dimwhite);
	box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.85);
}
.testimonial-name,
.testimonial-position {
	margin: 0;
	padding: 0;
}
.testimonials-carousel-pagination {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	height: 8px;
}
@media (min-width: 768px) {
	.testimonials-carousel-pagination {
		justify-content: flex-start;
	}
}
.testimonials-carousel-pagination__dot {
	width: 30px;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 2px;
	background: var(--dimwhite);
	cursor: pointer;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.testimonials-carousel-pagination__dot:hover,
.testimonials-carousel-pagination__dot:focus-visible {
	background: var(--white);
	height: 4px;
	border-radius: 2px;
	outline: none;
}
.testimonials-carousel-pagination__dot.is-active {
	background: var(--primary-color);
	width: 50px;
	height: 6px;
	border-radius: 3px;
}
@media (max-width: 767px) {
	.testimonial-card {
		gap: 24px;
		padding: 24px;
	}
	.testimonial-person {
		align-items: flex-start;
	}
	.testimonial-avatar {
		width: 70px;
    	height: 90px;
	}
}
/* ============================================================
   Events Filter — Custom Select & Detail Panel
   ============================================================ */
.events-filter {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
	margin-left: -10px !important;
	margin-right: -10px !important;
}
.events-filter > * {
	padding: 10px !important;
}
.events-filter__selector-wrap {
	position: relative;
	z-index: 1;
}
.events-filter__selector-wrap:has(.events-custom-select.is-open) {
	z-index: 10;
}
.events-filter__selector-wrap:first-of-type {
	z-index: 2;
}
.events-filter__selector-wrap:last-of-type {
	z-index: 1;
}

/* Custom select base */
.events-custom-select {
	position: relative;
	user-select: none;
	width: 100%;
}
.events-custom-select__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	color: #fff;
	font-size: 1.6rem;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
	text-align: left;
}
.events-custom-select__trigger i {
	font-size: 1.6rem;
}
.events-custom-select__trigger:hover,
.events-custom-select.is-open .events-custom-select__trigger {
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.07);
}
.events-custom-select--disabled .events-custom-select__trigger {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}
.events-custom-select__label {
	flex: 1 1 auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s ease;
}
.events-custom-select[data-value] .events-custom-select__label {
	color: #fff;
}
.events-custom-select__arrow {
	flex-shrink: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	transition: transform 0.25s ease, color 0.2s ease;
}
.events-custom-select.is-open .events-custom-select__arrow {
	transform: rotate(180deg);
	color: var(--primary-color);
}

/* Dropdown list */
.events-custom-select__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 200;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #0f1e2e;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.7);
	max-height: 260px;
	overflow-y: auto;
}
.events-custom-select.is-open .events-custom-select__dropdown {
	display: block;
	animation: eventsDropdownIn 0.18s ease;
}
@keyframes eventsDropdownIn {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}
.events-custom-select__option {
	padding: 12px 20px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.4rem;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}
.events-custom-select__option:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}
.events-custom-select__option.is-selected {
	color: var(--primary-color);
	background: rgba(212, 148, 82, 0.08);
}
.events-custom-select__option--empty {
	color: rgba(255, 255, 255, 0.35);
	cursor: default;
	pointer-events: none;
	font-style: italic;
}

/* Event detail panel */
.event-detail-panel {
	margin-top: 40px;
	position: relative;
	z-index: 1;
}
.event-detail-panel__inner {
	position: relative;
	min-height: 80px;
}
/* Keep the inner wrapper tall enough to show the spinner before content arrives */
.event-detail-panel__inner:has(.event-detail-panel__loading:not(.event-detail-panel__loading--hidden)) {
	min-height: 350px;
}
.event-detail-panel__loading {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.35s ease;
	pointer-events: none;
	z-index: 1;
}
.event-detail-panel__loading--hidden {
	display: none;
}
.event-detail-panel__loading.is-fading-out {
	opacity: 0;
	pointer-events: none;
}
.event-detail-panel__spinner {
	display: inline-block;
	width: 32px;
	height: 32px;
	border: 3px solid rgba(255, 255, 255, 0.12);
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: eventSpinner 0.7s linear infinite;
}
@keyframes eventSpinner {
	to { transform: rotate(360deg); }
}
.event-detail-wrapper {
	background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--white), var(--primary-color)) border-box;
	border: 1px solid transparent;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.5);
	animation: eventDetailIn 0.3s ease;
}
.event-detail-card {
	overflow: hidden;
	padding: 4px 0 12px;
	background: radial-gradient(circle at bottom right, var(--amfree-darker-purple) 0%, var(--amfree-dark-purple) 50%, var(--amfree-mid-purple) 100%);
	padding: calc(var(--padding) * 2);
}
@keyframes eventDetailIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}
.event-detail-card__trainers-list.bm-row {
	margin-left: -5px;
	margin-right: -5px;
}
.event-detail-card__trainers-list.bm-row > * {
	padding: 5px;
}
.event-detail-card__training-title {
	font-size: 2rem;
	margin-bottom: 16px;
}
.event-detail-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 24px;
}
.event-detail-card__meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.4rem;
}
.event-detail-card__meta-item i {
	font-size: 1.6rem;
	color: var(--dimwhite);
}
.event-detail-card__cede {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	margin-bottom: 24px;
}
.event-detail-card__venue {
	font-size: 1.6rem;
}
.event-detail-card__address,
.event-detail-card__location-ref {
	font-size: 1.4rem;
}
.event-detail-card__maps-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 1.4rem;
	text-decoration: none;
}
.event-detail-card__maps-link:hover {
	text-decoration: underline;
}
.event-detail-card__parking,
.event-detail-card__access {
	font-size: 1.4rem;
	line-height: 1.6;
}
.event-detail-card__trainers {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.event-detail-card__trainer-avatar {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	object-fit: cover;
	object-position: top center;
	border: 2px solid rgba(255, 255, 255, 0.14);
}
.event-detail-card__trainer-info {
	margin-top: 20px;
}
.event-detail-card__trainer-name {
	font-size: 1.4rem;
	font-weight: 600;
}
.event-detail-card__trainer-position {
	font-size: 1.4rem;
}
@media (max-width: 767px) {
	.event-detail-card {
		padding: 24px;
	}
	.event-detail-card__meta {
		flex-direction: column;
		gap: 10px;
	}
}

/* ============================================================
   Toast Notifications
   ============================================================ */
.toast {
	position: fixed;
	z-index: 20;
	bottom: 20px;
	right: calc(-300px - 20px);
	background-color: transparent;
	color: var(--white);
	padding: calc(var(--padding) / 2);
	border: 1px solid transparent;
	border-radius: 12px;
	max-width: 300px;
	transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.toast.active {
	right: 20px;
}
.toast--success {
	background-color: rgb(99, 143, 99);
	color: var(--white);
}
.toast--error {
	background-color: rgb(143, 99, 99);
	color: var(--white);
}
.toast-content {
	display: flex;
	flex-direction: column;
}
.toast_icon {
	font-size: 2rem;
	margin-bottom: 5px;
}
.toast_text {
	flex: 1 1 auto;
	min-width: 0;
}
.toast_text p {
	margin: 0;
	line-height: 1.4;
}
.toast_text p + p {
	margin-top: 4px;
}