/*
 * Chiro Docs Main Stylesheet
 * Design System: "Modern Healthcare Vibe"
 */

:root {
	/* Colors */
	--color-trust-blue: #117269;
	--color-calming-teal: #0EAB9A;
	--color-white: #FFFFFF;
	--color-off-white: #F7F9FA;
	--color-text: #2D3748;
	--color-text-muted: #4A5568;

	/* Typography */
	--font-primary: 'Nunito', sans-serif;
	--font-heading: 'Outfit', sans-serif;
}

/* Reset & Base */
* {
	box-sizing: border-box;
}
body {
	font-family: var(--font-primary);
	font-size: 18px; /* Large for accessibility */
	color: var(--color-text);
	background-color: var(--color-white);
	line-height: 1.6;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-trust-blue);
	font-weight: 700;
	line-height: 1.2;
}
a {
	color: var(--color-calming-teal);
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover {
	color: var(--color-trust-blue);
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px; /* Modern rounded corners */
	font-weight: 700;
	font-family: var(--font-heading);
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary {
	background-color: var(--color-calming-teal);
	color: var(--color-white);
}
.btn-primary:hover {
	background-color: #006666;
	color: var(--color-white);
	transform: translateY(-2px);
}
.btn-secondary {
	background-color: transparent;
	color: var(--color-calming-teal);
	border: 2px solid var(--color-calming-teal);
}
.btn-secondary:hover {
	background-color: var(--color-calming-teal);
	color: var(--color-white);
}

/* Make Native Gutenberg Buttons match Theme Buttons */
.wp-block-button__link.wp-element-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px; /* Softer, modern corners */
	text-decoration: none;
	font-weight: 700;
	font-family: var(--font-heading);
	transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.2s;
	border: none;
	font-size: 1rem;
	line-height: 1.5;
}
.wp-block-button__link.wp-element-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(17, 114, 105, 0.15);
}
.wp-block-button.is-style-fill .wp-block-button__link {
	background-color: var(--color-trust-blue) !important;
	color: var(--color-white) !important;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover {
	background-color: var(--color-calming-teal) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent !important;
	color: var(--color-trust-blue) !important;
	border: 2px solid var(--color-trust-blue) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: var(--color-trust-blue) !important;
	color: var(--color-white) !important;
}

/* Header */
.site-header {
	background-color: rgba(255, 255, 255, 0.7); /* Frosted glass white */
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--color-text);
	padding: 0.75rem 1.5rem;
	position: fixed; /* Floats over content */
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	max-width: 1000px;
	z-index: 999;
	border-radius: 50px; /* Pill shape */
	box-shadow: 0 8px 32px rgba(14, 171, 154, 0.15); /* Soft teal glow */
	transition: border-radius 0.4s ease, box-shadow 0.4s ease, border-bottom-color 0.4s ease;
}

/* Account for WordPress Admin Bar */
body.admin-bar .site-header {
	top: 62px; /* 32px admin bar + 30px margin */
}
.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-title a {
	color: var(--color-trust-blue);
	font-size: 1.5rem;
}
.site-branding .custom-logo {
	max-height: 60px;
	width: auto;
}
.main-navigation {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
}
.main-navigation a {
	color: var(--color-text);
	font-weight: 600;
	font-family: var(--font-heading);
	font-size: 1.1rem;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
	color: var(--color-calming-teal);
}
.menu-toggle {
	display: none;
}
/* Dropdown Menus */
.main-navigation li {
	position: relative;
}
.main-navigation .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--color-white);
	min-width: 200px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	border-radius: 4px;
	padding: 0.5rem 0;
	z-index: 100;
	flex-direction: column;
	gap: 0;
}
.main-navigation li:hover > .sub-menu {
	display: flex;
}
.main-navigation .sub-menu li {
	width: 100%;
}
.main-navigation .sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	font-weight: 400;
	color: var(--color-text-muted);
}
.main-navigation .sub-menu a:hover {
	background: var(--color-off-white);
	color: var(--color-trust-blue);
}

/* Front Page Layout */
.site-content {
	/* Push content down by default so it's not hidden by the fixed header */
	padding-top: 120px;
}
.site-content:has(.wp-block-cover.alignfull:first-child) {
	/* If a full-width hero cover is the first element, let it bleed to the top edge */
	padding-top: 0;
}
.wp-block-cover.hero-section,
.wp-block-cover.chiro-masthead {
	/* Ensure text inside hero blocks isn't hidden behind the floating header */
	padding-top: 160px;
}

.hero-section {
	padding: 4rem 1.5rem;
	background-color: var(--color-white);
}
.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 4rem;
}
.hero-content {
	flex: 1;
}
.hero-title {
	font-size: 3rem;
	margin-bottom: 1rem;
}
.hero-subtitle {
	font-size: 1.25rem;
	color: var(--color-text-muted);
	margin-bottom: 2rem;
}
.hero-image {
	flex: 1;
}
.hero-image img, .hero-image div {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-top: 0;
	margin-bottom: 3rem;
}
.map-reviews-section .section-title {
	text-align: center !important;
}

.services-section {
	background-color: var(--color-off-white);
	padding: 3rem 1.5rem;
}
.team-section {
	padding: 3rem 1.5rem;
}
.map-reviews-section {
	padding: 4rem 1.5rem;
}
.testimonials-section {
	background-color: var(--color-off-white);
	padding: 5rem 1.5rem;
}
.first-visit-section {
	padding: 3rem 1.5rem;
}

/* Footer */
.site-footer {
	background-color: var(--color-text-muted); /* Changed from trust-blue to middle gray */
	color: var(--color-white);
	padding: 4rem 0 2rem;
}
.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.footer-title {
	color: var(--color-white);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.footer-nap {
	color: #E2E8F0;
}
.footer-nap a {
	color: var(--color-calming-teal);
}
.site-info {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	color: #A0AEC0;
}

/* =========================================
   Mobile UX / UI Optimization 
========================================= */
@media (max-width: 768px) {
	/* 1. Header & Navigation Overlay */
	.header-container {
		flex-direction: row;
		justify-content: space-between;
	}
	
	/* When menu is open, flatten the bottom of the pill header */
	body.menu-open .site-header {
		border-radius: 24px 24px 0 0;
		border-bottom-color: transparent;
		box-shadow: none; /* Let the navigation handle the shadow */
	}
	
	.menu-toggle {
		display: block;
		background: transparent;
		border: none;
		color: var(--color-trust-blue);
		cursor: pointer;
		padding: 0.5rem;
		z-index: 1001;
	}
	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-radius: 0 0 24px 24px;
		box-shadow: 0 20px 40px rgba(0,0,0,0.1);
		padding: 0;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.main-navigation.toggled {
		max-height: calc(100vh - 100px);
		opacity: 1;
		padding: 2rem 1.5rem 3rem;
		overflow-y: auto;
	}
	.main-navigation ul {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
		width: 100%;
	}
	.main-navigation a {
		font-size: 1.25rem;
	}
	
	/* Mobile Submenu Override */
	.main-navigation li.mobile-submenu-open > .sub-menu {
		display: flex;
		position: relative;
		box-shadow: none;
		background: transparent;
		padding-top: 1rem;
		gap: 0.75rem;
	}
	.main-navigation .sub-menu a {
		font-size: 1.1rem;
		color: var(--color-trust-blue);
		opacity: 0.8;
	}
	.header-cta {
		margin-top: 2rem;
		width: 100%;
	}
	.header-cta .btn {
		width: 100%;
		display: block;
	}
	
	/* 2. Responsive Typography */
	h1, .hero-title, .page-title, .entry-title { font-size: 2.25rem !important; }
	h2, .section-title { font-size: 2rem !important; }
	h3 { font-size: 1.5rem !important; }
	
	/* 3. Padding & Spacing Reductions */
	.hero-section { padding: 3rem 1.5rem; }
	.services-section, .team-section, .first-visit-section, .map-reviews-section { padding: 2rem 1.5rem; }
	.testimonials-section, .location-section { padding: 3rem 1.5rem; }
	.section-title { margin-bottom: 2rem; }
	.page-header { padding: 2rem 0 1rem; }
	.custom-masthead { padding-top: 120px !important; padding-bottom: 40px !important; }
	
	/* 4. Layout Constraints */
	.hero-container, .footer-container, .location-container {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}
	.location-info h3 { margin-bottom: 1rem; }

	/* Force Gutenberg Columns to stack on mobile */
	.wp-block-columns {
		flex-direction: column !important;
	}
	.wp-block-column {
		flex-basis: 100% !important;
		margin-left: 0 !important;
		width: 100% !important;
	}
	
	/* Prevent full-width bleeding on standard groups */
	.entry-content > .wp-block-group {
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}
	
	/* Allow team cards to expand fully on mobile */
	.team-grid-container > * {
		flex-basis: 100% !important;
	}
	
	/* Fix Services Pill Width Bleeding by wrapping individual buttons */
	.chiro-tabs-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0;
		margin: 0 0 2rem 0;
		width: 100%;
		box-shadow: none;
		background: transparent;
	}
	.chiro-tabs-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		background: transparent;
		box-shadow: none;
		border: none;
		padding: 0;
	}
	.chiro-tab-btn {
		background: rgba(255, 255, 255, 0.9);
		border: 1px solid var(--color-calming-teal);
		border-radius: 50px;
		margin: 0.25rem;
		padding: 0.5rem 1rem;
		font-size: 0.95rem;
	}
	.chiro-tab-btn.active {
		background: var(--color-trust-blue);
		color: var(--color-white);
		border-color: var(--color-trust-blue);
	}
	.chiro-tab-slider {
		display: none !important;
	}
}

/* Location Section */
.location-section {
	padding: 5rem 0;
	background-color: var(--color-white);
}
.location-container {
	display: flex;
	gap: 3rem;
	align-items: center;
}
.location-info {
	flex: 1;
}
.location-info h3 {
	font-size: 2rem;
	margin-top: 0;
}
.location-info .hours ul {
	list-style: none;
	padding: 0;
}
.location-info .hours li {
	margin-bottom: 0.5rem;
}
.location-map {
	flex: 1;
}
.location-map iframe {
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Gutenberg Layout Constraints */
body .is-layout-constrained > :not(.alignleft):not(.alignright):not(.alignfull) {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
body .is-layout-constrained > .alignwide {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.entry-content > *:not(.alignwide):not(.alignfull):not(.wp-block-group) {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.entry-content > .alignwide {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.entry-content > .alignfull {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

/* Gutenberg Colors */
.has-trust-blue-color { color: var(--color-trust-blue); }
.has-trust-blue-background-color { background-color: var(--color-trust-blue); }
.has-calming-teal-color { color: var(--color-calming-teal); }
.has-calming-teal-background-color { background-color: var(--color-calming-teal); }
.has-off-white-color { color: var(--color-off-white); }
.has-off-white-background-color { background-color: var(--color-off-white); }
.has-white-color { color: var(--color-white); }
.has-white-background-color { background-color: var(--color-white); }

/* Blog Layout */
.page-header {
	text-align: center;
	padding: 4rem 0 2rem;
}
.page-title {
	font-size: 3rem;
	margin-top: 0;
}
.page-subtitle {
	font-size: 1.25rem;
	color: var(--color-text-muted);
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
}
/* Global Glassmorphism Cards */
.glass-card {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(14, 171, 154, 0.08); /* Extremely soft teal glow */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(14, 171, 154, 0.15); /* Stronger glow on hover */
}

.blog-card {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(14, 171, 154, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(14, 171, 154, 0.15);
}
.blog-card-image {
	display: block;
	height: 220px;
}
.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-card-image.placeholder-image {
	background-color: #e2e8f0;
}

/* Reviews Slider */
.reviews-slider {
	/* New styles are applied inline or via glass-card class */
}
.reviews-slider .stars {
	color: #F59E0B; /* Star Gold */
	font-size: 1.5rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

/* Map Container */
.map-container {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(14, 171, 154, 0.08);
	line-height: 0;
}
.map-container iframe {
	border-radius: 16px;
}
.blog-card-content {
	padding: 1.5rem;
}
.blog-card-meta {
	font-size: 0.875rem;
	color: var(--color-calming-teal);
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.blog-card-title {
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: 1rem;
}
.blog-card-title a {
	color: var(--color-trust-blue);
}
.blog-card-title a:hover {
	color: var(--color-calming-teal);
}
.read-more {
	font-weight: 600;
	display: inline-block;
	margin-top: 1rem;
}
.pagination-wrapper {
	text-align: center;
	margin: 2rem 0 4rem;
}

/* Single Post Layout */
.single-post-main .entry-header {
	text-align: center;
	padding: 3rem 0;
	max-width: 800px;
	margin: 0 auto;
}
.single-post-main .entry-title {
	font-size: 3.5rem;
}
.single-post-main .entry-meta {
	color: var(--color-text-muted);
}
.single-post-main .post-thumbnail {
	margin-bottom: 3rem;
}
.single-post-main .post-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}
.single-post-main .entry-content {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1rem;
}
.single-post-main .entry-footer {
	max-width: 800px;
	margin: 3rem auto;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}
.post-navigation {
	text-align: center;
	margin: 4rem 0;
}

/* Team Grid Global Styles */
.chiro-team-grid { margin: 2rem 0; }
.team-grid-container { 
	display: flex; 
	flex-wrap: wrap; 
	justify-content: center; 
	gap: 2rem; 
}
.team-grid-container > * {
	flex: 0 1 calc(25% - 1.5rem);
	min-width: 250px;
}
/* When exactly 5 items exist, size them to fit 3 per row, making the second row of 2 naturally center */
.team-grid-container:has(> :nth-child(5):last-child) > * {
	flex: 0 1 calc(33.333% - 1.34rem);
}
.team-card { display: flex; flex-direction: column; overflow: hidden; text-align: center; padding: 1.5rem; }
.team-card-image { width: 150px; height: 150px; margin: 0 auto 1.5rem; border-radius: 50%; background-color: #e2e8f0; border: 4px solid var(--color-off-white); overflow: hidden; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.25rem; margin-top: 0; margin-bottom: 0.25rem; color: var(--color-trust-blue); }
.team-title-cred { color: var(--color-calming-teal); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.team-focus { font-size: 0.9rem; color: var(--color-text-muted); }

/* Accordion (Details/Summary) Styling */
details.glass-accordion {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(14, 171, 154, 0.05);
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}
details.glass-accordion[open] {
	box-shadow: 0 15px 50px rgba(14, 171, 154, 0.1);
}
details.glass-accordion summary {
	padding: 1.5rem;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--color-trust-blue);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	outline: none;
}
details.glass-accordion summary::-webkit-details-marker {
	display: none;
}
details.glass-accordion summary::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--color-calming-teal);
	transition: transform 0.3s ease;
}
details.glass-accordion[open] summary::after {
	content: '−';
	transform: rotate(180deg);
}
details.glass-accordion .accordion-content {
	padding: 0 1.5rem 1.5rem;
	color: var(--color-text);
	line-height: 1.8;
}

/* Contact Page Specific Styles */
.wp-block-column:has(.chiro-contact-card) {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.chiro-contact-card {
    padding: 2rem;
}
.chiro-contact-card:first-child {
    text-align: center;
    border: 2px solid var(--color-calming-teal);
}
.chiro-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chiro-contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Service Steps CSS */
.chiro-service-steps {
    gap: 1.5rem;
}
.chiro-service-steps .wp-block-column {
    margin-bottom: 2rem;
}
.chiro-service-steps .glass-card {
    padding: 2rem;
    position: relative;
    height: 100%;
}
.chiro-service-steps .glass-card h4 {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--color-calming-teal) !important;
    color: white !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
}
.chiro-service-steps .glass-card p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-main);
}

/* Content Formatting */
.entry-content {
    line-height: 1.8;
}

.entry-content ul, 
.entry-content ol,
.entry-content ul.wp-block-list,
.entry-content ol.wp-block-list {
    margin-left: 2.5rem !important;
    padding-left: 1rem !important;
    margin-bottom: 1.5rem;
    list-style-position: outside !important;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Frosted Glass Tabs (Segmented Control) */
.chiro-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: sticky;
    top: 20px;
    z-index: 100;
}

.chiro-tabs-container {
    display: inline-flex;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.chiro-tab-slider {
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0;
    background: var(--color-trust-blue);
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 10px rgba(11, 83, 148, 0.3);
}

.chiro-tab-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-text-main);
    cursor: pointer;
    transition: color 0.3s ease;
}

.chiro-tab-btn.active {
    color: white;
}

.chiro-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.chiro-tab-content.active {
    display: block;
    opacity: 1;
}

