:root {
	--brand-primary: #2383D8;
	--brand-primary-dark: #123C66;
	--brand-primary-light: #EAF5FF;
	--brand-surface: #EAF5FF;
	--brand-accent: #123C66;
	--brand-muted: #6E8EAC;
	--brand-white: #F7FBFF;
	--brand-black: #1a1a1a;
	--brand-border: rgba(18, 60, 102, 0.14);
	--brand-shadow: rgba(18, 60, 102, 0.13);
}

html {
	scroll-behavior: smooth;
}

html, body, #wrapper {
	overflow-x: hidden;
}

#sub-page-content ol li {
	line-height: 38px;
}

.blog-treatment-card .treatment-card-title {
	margin: 0 0 14px;
}

.blog-treatment-card .treatment-card-body .btn {
	align-self: flex-start;
}

/* Blog detail page */
.blog-detail-main-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	margin: 0 0 34px;
	border-radius: 16px;
	border: 1px solid rgba(18, 60, 102, 0.12);
	box-shadow: 0 16px 38px rgba(18, 60, 102, 0.07);
}

.blog-detail-main {
	max-width: 980px;
	margin: 0 auto;
}

.blog-detail-recent-section {
	max-width: 980px;
	margin: 58px auto 0;
	padding-top: 42px;
	border-top: 1px solid rgba(18, 60, 102, 0.12);
}

.blog-detail-recent-header {
	margin-bottom: 24px;
}

.blog-detail-recent-header h2 {
	margin: 0;
	color: var(--brand-primary-dark);
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 800;
	line-height: 1.08;
	text-transform: none;
}

.blog-detail-recent-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.blog-detail-recent-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border: 1px solid var(--brand-border);
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 42px rgba(18, 60, 102, 0.07);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.blog-detail-recent-card:hover {
	transform: translateY(-4px);
	border-color: rgba(35, 131, 216, 0.28);
	box-shadow: 0 24px 56px rgba(18, 60, 102, 0.1);
}

.blog-detail-recent-card > a {
	display: block;
	height: 220px;
	overflow: hidden;
	background: var(--brand-primary-light);
}

.blog-detail-recent-card > a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.blog-detail-recent-card > a:hover img {
	transform: scale(1.04);
}

.blog-detail-recent-card .news-contents {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 14px;
	padding: 24px;
}

.blog-detail-recent-card .news-title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.34;
}

.blog-detail-recent-card .news-title a {
	color: var(--brand-primary-dark);
}

.blog-detail-recent-card .news-title a:hover,
.blog-detail-recent-card .news-title a:focus {
	color: var(--brand-primary);
}

.blog-detail-recent-card .news-contents p {
	margin: 0;
	color: var(--brand-black);
	font-size: 16px;
	line-height: 1.68;
}

.blog-detail-recent-card .btn {
	width: 100%;
	margin-top: auto;
}

.blog-detail-sidebar {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.blog-detail-sidebar-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid rgba(18, 60, 102, 0.12);
	box-shadow: 0 16px 38px rgba(18, 60, 102, 0.07);
}

.blog-recent-posts {
	margin-top: 0 !important;
	padding: 22px;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.12);
	border-radius: 16px;
	box-shadow: 0 16px 38px rgba(18, 60, 102, 0.07);
}

.blog-recent-posts h2.bordered {
	margin: 0 0 18px !important;
	padding: 0 0 14px;
	border-bottom: 1px solid rgba(18, 60, 102, 0.12);
	color: var(--brand-primary-dark) !important;
	font-size: 24px !important;
	line-height: 1.15 !important;
	font-weight: 800 !important;
}

.blog-recent-posts .popular-post {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	margin: 0;
	padding: 12px 0;
	border-bottom: 1px solid rgba(18, 60, 102, 0.1);
}

.blog-recent-posts .popular-post:first-of-type {
	padding-top: 0;
}

.blog-recent-posts .popular-post:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.blog-recent-posts .popular-post-thumb {
	display: block;
	overflow: hidden;
	width: 74px;
	height: 58px;
	border-radius: 10px;
	background: var(--brand-primary-light);
}

.blog-recent-posts .popular-post img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	margin: 0 !important;
	transition: transform .32s cubic-bezier(0.32, 0.72, 0, 1);
}

.blog-recent-posts .popular-post:hover img {
	transform: scale(1.05);
}

.blog-recent-posts .popular-post h4 {
	margin: 0 !important;
	font-size: 12px !important;
	line-height: 1.32 !important;
	font-weight: 700 !important;
}

.blog-recent-posts .popular-post h4 a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--brand-primary-dark) !important;
	text-decoration: none !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color .24s cubic-bezier(0.32, 0.72, 0, 1);
}

.blog-recent-posts .popular-post h4 a:hover,
.blog-recent-posts .popular-post h4 a:focus {
	color: var(--brand-primary) !important;
}

@media (max-width: 991px) {
	.blog-detail-sidebar {
		margin-top: 30px;
	}

	.blog-detail-main {
		max-width: 100%;
	}

	.blog-detail-recent-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.blog-detail-recent-section {
		margin-top: 42px;
		padding-top: 32px;
	}

	.blog-detail-recent-grid {
		grid-template-columns: 1fr;
	}

	.blog-detail-recent-card > a {
		height: 200px;
	}
}

body{
	font-family: 'Outfit', sans-serif;
	font-size:15px;
	line-height:1.65;
	color: var(--brand-black);
	background: var(--brand-white);
}

h2 small {
	color: #4e4e4e;
}

header .container-fluid {
	max-width: 1400px;
	margin: auto;
}

textarea {
	height: unset;
	min-height: 120px;
}

input[type=submit] { margin-bottom: 24px; }

.nav li a i {
	display: none;
	float: right;
	position: relative;
	bottom: 11px;
	padding: 16px 32px;
}

.navbar-brand {
	margin: 9px 0 0;
}

.navbar-brand.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	height: auto;
	padding: 0;
	text-decoration: none;
}

.navbar-brand.site-logo img {
	width: 62px;
	height: 46px;
	object-fit: cover;
	object-position: left center;
	border-radius: 10px;
	filter: none;
	box-shadow: 0 8px 20px rgba(18, 60, 102, 0.12);
}

.navbar-brand.site-logo span {
	color: var(--brand-primary);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	white-space: nowrap;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .navbar-nav > li:hover a, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
	background-color: rgba(35, 131, 216, 0.1);
}

.nav > li > a {
	font-weight: 600;
}

.top-row {
	background-color:#123C66;
	color: #fff;
	font-size: 15px;
}

.top-row ul {list-style: none; padding: 0; margin:0;}
.top-row ul li {display: inline-block; padding: 12px 8px; border-left: 1px solid rgba(255,255,255,0.5);}

.top-row a {color: #fff;}

.top-row .navbar-nav {
	float: right;
	text-align: right;
	display: flex;
}

.top-row .navbar-nav .dropdown-menu {
	min-width: 189px !important;
	max-width: 240px;
	background-color: #8f8c8c;
	border-top: none;
}

.top-row .navbar-nav .dropdown-menu li {
	border-left: none;
	padding-left: 0px;
}

.top-row .navbar-nav > li:hover ul li a {
	background: transparent;
	color: #fff !important;
	border-bottom: none;
	padding: 0px;
}

.top-row img {
	max-width: 24px;
}

.main-banner img {
	/*height: clamp(180px, 46vw, 75vh);*/
	object-fit: contain;
}

.home-lead-section {
	padding: 46px 0 18px;
	background: linear-gradient(180deg, #EAF5FF 0%, #ffffff 100%);
}

.home-lead-card {
	background-color: #fff;
	border: 1px solid #e9e4e0;
	border-radius: 18px;
	padding: 30px 28px 20px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	max-width: 980px;
	margin: 0 auto;
}

.home-lead-card .slider-title {
	color: #1f1f1f;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 22px;
	text-align: center;
}

.home-lead-form input,
.home-lead-form .selector {
	width: 100% !important;
	margin-bottom: 14px;
	z-index: 1;
	position: relative;
	color: #333;
	border-radius: 8px;
	height: 48px;
	border: 1px solid #d6d6d6;
	box-shadow: none;
	padding: 10px 14px;
}

.home-lead-form .selector span {
	color: #333 !important;
}

.home-lead-form input:focus,
.home-lead-form .selector:focus {
	border-color: #123C66;
}

.home-lead-form input[type="submit"] {
	color: #fff;
	background-color: #50504f;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	margin-top: 2px;
}

.home-lead-form input[type="submit"]:hover {
	background-color: #123C66;
}

.btn-default {background-color:#50504f; border: none; box-shadow: none;}


h1.light, h2.light, h3.light, h4.light, h5.light, h6.light, .h1.light, .h2.light, .h3.light, .h4.light, .h5.light, .h6.light {
	color: #123C66;
} 

h1.dark-black, h2.dark-black, h3.dark-black, h4.dark-black, h5.dark-black, h6.dark-black, .h1.dark-black, .h2.dark-black, .h3.dark-black, .h4.dark-black, .h5.dark-black, .h6.dark-black {
	color: #000;
	font-weight: normal;
} 

.dark-black span {font-weight:bold;}
.main-color span {font-weight:bold;}

.tab-horizontal1 {border: none;}
.resp-tabs-list {text-align:center; border: none;}
.resp-tabs-list li {float: none; border: none; font-size: 24px; text-align:center; padding:20px; border-bottom: 3px solid #ccc;}
.resp-tabs-list li img {height:100px;}
.resp-tab-active, .resp-tab-content {border: none;}

.resp-tab-active {color: #123C66; border-bottom-color: #123C66 !important; padding: 20px !important;}

.resp-tabs-container {font-size:16px;}

.main-color {color:#123C66;}

.is-hidden {
	display: none;
}

#success {
	display: none;
	margin-top: 16px;
}

.form-phone-full {
	width: 100%;
}

#content-index .services-sec { padding: 42px 0px; }
.section-popular { padding-bottom: 60px; padding-top: 60px;}
.section-news { padding-bottom: 60px; padding-top: 60px;}
.section-beforeafter {background-color:#EAF5FF; padding-bottom: 60px; padding-top: 60px;}
.section-videos {background-color:#e8e6e4; padding-bottom: 60px; padding-top: 60px;}
.section-aboutme {background-color:#EAF5FF; padding-bottom: 0; padding-top: 60px; font-size: 17px; line-height:26px;}
.section-aboutme-feature {
	padding-top: 60px !important;
}

.aboutme-feature-card {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 14px 36px rgba(0,0,0,.08);
	overflow: hidden;
}

.aboutme-feature-content {
	padding: 40px;
}

.aboutme-feature-title {
	font-size: 36px;
	line-height: 1.25;
	font-weight: normal;
	margin: 0 0 16px 0;
}

.aboutme-feature-text {
	font-size: 17px;
	line-height: 26px;
	color: #333;
	margin-bottom: 20px;
}

.aboutme-feature-btn {
	padding: 12px 24px;
	font-weight: 600;
}

.aboutme-feature-image-col {
	padding: 0;
}

.aboutme-feature-image {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.section-aboutme .btn-default { margin-bottom: 16px; }
.section-title {margin-bottom:50px;}
.popular-item img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	object-position: center;
}

.btn {border-radius: 8px;}

.service-box:hover {background-color:#123C66;}
.service-box:hover .icon {background-color: transparent; box-shadow: 0px 0px 0px 1px #787878;}


.service-box img {
	/* padding:12px; */
	border-radius: 50%;
}

.services-sec h2 {font-size:36px; font-weight: normal;}
.services-sec .service-box.one { border-bottom: none; border-right: none; }
.services-sec .service-box.one:first-child { border-right: 1px solid #e5e5e5; }
.section-news h2 {text-transform: none;}
.section-news .owl-wrapper {
	display: flex !important;
}
.section-news .owl-item {
	display: flex;
}
.section-news .news-item {
	background-color: #f6f4f4;
	border-radius: 20px 20px 0 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}
.section-news .news-item > a {
	display: block;
	height: 240px;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}
.section-news .news-item > a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
	transition: transform 0.3s ease;
}
.section-news .news-item > a:hover img {
	transform: scale(1.05);
}
.section-news .news-contents {
	padding: 10px 20px;
	color: #000;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}
.section-news .news-contents .btn {margin-top: auto; margin-bottom: 16px;}
.section-news .news-title {font-weight: bold; margin-bottom: 10px; margin-top: 10px; font-size: 18px;}
.section-news .news-date {
	position: absolute;
    top: 0;
    border-radius: 20px 0px 0px 0px;
    background-color: #123C66;
    max-height: 46px;
}

.news-date p {
	font-size: 16px;
	color: #fff;
	padding: 12px;
}

.reviews-container {
	display: grid;
	justify-content: center;
}

.trustpilot-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 8px;
}

.trustpilot-container a {
	font-size: 18px;
}

.trustpilot-container img {
	margin-bottom: 6px;
}

.appointment-sec2 input[type="text"], .appointment-sec2 input[type="email"], .appointment-sec2 input[type="number"], .appointment-sec2 textarea, .appointment-sec2 select {width: 100%; color: #333;}

.appointment-sec2 input[type="submit"] {margin: 0;}

.appointment-sec2 .selector { width: 100% !important; }

.bottom-content-form .selector span { color: #fff !important; }

.testimonials {
	background-color: #1f1f1f !important;
	background-image: none !important;
	padding: 60px 0;
}

.testimonials .owl-controls .owl-prev,
.testimonials .owl-controls .owl-next {
	color: rgba(255,255,255,.7) !important;
}

.testimonials .owl-controls .owl-prev:hover,
.testimonials .owl-controls .owl-next:hover {
	color: #123C66 !important;
}

.testimonials-header {
	text-align: center;
	max-width: 860px;
	margin: 0 auto 40px;
}

.testimonials-header h2 {
	color: #fff;
	font-size: 36px;
	font-weight: normal;
	margin: 0 0 20px;
}

.testimonials p {
	color: rgba(255,255,255,.9);
}

.testimonials-summary {
	color: rgba(255,255,255,.85);
	font-size: 14px;
	line-height: 22px;
	margin: 0;
}

.tm-card {
	background: #2a2a2a;
	border-radius: 14px;
	padding: 36px 40px 32px;
	text-align: left;
	height: 450px;
	display: flex;
	flex-direction: column;
}

.tm-quote {
	color: #123C66;
	font-size: 22px;
	display: block;
	margin-bottom: 16px;
}

.tm-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 24px;
}

.tm-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #123C66;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	letter-spacing: .04em;
}

.tm-name {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}



.tweet p {padding: 0;}
.tweet a {color:#fff;} 

.social3 li a i {border-radius: 20px; background-color: #fff; color: #000 !important;}
footer h4 span {color:#123C66; border-bottom-color:#000;}

.nav > li > a {
	padding: 10px 12px;
}

.dropdown-menu {min-width: 300px !important;} 

.entry-title {padding: 154px 0 0;}
.gallery-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	border: 1px solid #eee;
	border-radius: 6px;
	overflow: hidden;
}

.gallery-item .gallery-item-thumb {
	height: 240px;
	overflow: hidden;
}

.gallery-item .gallery-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#sub-page-content h1, #sub-page-content h2, #sub-page-content h3, #sub-page-content h4, #sub-page-content h5, #sub-page-content h6 {
	font-weight: 500;
	text-transform: initial;
}

.sub-page-banner {background: none; background-color: #123C66;}
.sub-page-banner img {
	width: 100%;
    max-height: 340px;
    object-fit: cover;
}
.sub-page-banner-white {background: none; background-color: #eee;}
.sub-page-banner .overlay {display: none;}
.treatment-sub-title {text-transform: none; padding-bottom: 0; padding-top: 0; margin: 0;}
#sub-page-content h3 img {padding-right: 18px;}

.treatment-banner-holder { display: flex; justify-content: center; }
.treatment-banner-holder .overlay {display: block;}
.treatment-banner-title {
	position: absolute;
	bottom: 20px;
}
.treatment-banner-title .entry-title {
	font-size: clamp(26px, 4vw, 42px);
	float: left;
	padding-left: 16px;
}

.blog-item {min-height: 490px;}
#sub-page-content h3 {font-size: 20px !important;}

.blog-full-width .blog-content {padding: 0 5px 0 5px;}

.blog-thumbnail {background-color: #eee;}

.sidebar-widget { margin-top: 38px; }
.sidebar-widget h2.bordered { margin-bottom: 0px; }
.procedures { margin-top: 38px; }
.treatment-procedures .panel-group.sidebar-nav {
	padding: 0px;
	padding-bottom: 8px;
}

.before-after-gallery .gallery-item-info {
	min-height: unset;
}

.iti {
    width: 100%;
    margin-bottom: 6px;
}

.iti .iti__country-name {
	color: #333;
}

.iti__country-list {
	max-width: 360px;
}

.faq-section .panel-group .panel {
	border-bottom: none;
	border: 1px solid #ddd;
	border-radius: 6px;
	background-color: #f7f7f7;
}

.faq-section .panel-default>.panel-heading {
	padding-inline: 8px;
}

.section-faq {
	background-color: #f9f7f5;
	padding: 60px 0;
}

.faq-home-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-home-item {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e8e4e0;
	transition: box-shadow .25s ease;
}

.faq-home-item:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.faq-home-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	padding: 20px 24px;
	font-size: 17px;
	font-weight: 600;
	color: #1f1f1f;
	text-align: left;
	cursor: pointer;
	gap: 16px;
}

.faq-home-question i {
	flex-shrink: 0;
	font-size: 14px;
	color: #123C66;
	transition: transform .3s ease;
}

.faq-home-question[aria-expanded="true"] i {
	transform: rotate(45deg);
}

.faq-home-answer-inner {
	padding: 16px 24px 20px;
	font-size: 15px;
	line-height: 26px;
	color: #555;
	max-height: 200px;
	overflow-y: auto;
}

.faq-home-row {
	display: flex;
	align-items: flex-end;
}

.faq-home-image-col {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.faq-home-image {
	width: 100%;
	max-width: 420px;
	height: auto;
	object-fit: cover;
}

/* PRESS */
.section-press {
	background-color: #f9f7f5;
	padding: 60px 0;
}

.section-press h2 {
	font-size: 36px;
}

.press-carousel .owl-wrapper-outer {
	overflow: visible;
	padding: 8px 0;
}

.press-carousel .owl-wrapper {
	display: flex !important;
}

.press-carousel .owl-item {
	display: flex;
}

.press-card {
	width: 100%;
}

.press-card a {
	display: block;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e8e4e0;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card a:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.press-card-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background-color: #f1f1f1;
	padding: 24px;
}

.press-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
}

.press-card a:hover .press-card-image img {
	transform: scale(1.04);
}

.section-press .owl-controls {
	margin-top: 24px;
}

.section-press .owl-pagination .owl-page span {
	background: #d6d0ca;
	width: 10px;
	height: 10px;
}

.section-press .owl-pagination .owl-page.active span {
	background: #123C66;
}

@media (max-width: 767px) {
	.section-press {
		padding: 40px 0;
	}

	.press-card {
		padding-inline: 16px;
	}

}
/* PRESS END */

/* VIDEOS */
.video-item-holder { min-height: 280px; }

.section-videos .owl-wrapper {
	display: flex !important;
}

.section-videos .owl-item {
	display: flex;
}

.section-videos .videos-item {
	width: 100%;
	background-color: #fff;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.section-videos .youtube-image-container {
	margin: 0;
	max-width: 100%;
	width: 100%;
}

.section-videos div.youtube-thumb-box {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.section-videos img.youtube-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	transition: transform 0.3s ease;
}

.section-videos .testimonial-video-container:hover .youtube-thumb-img {
	transform: scale(1.06);
}

.section-videos div.youtube-thumb-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.65);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.section-videos .testimonial-video-container:hover .youtube-thumb-play {
	background-color: var(--brand-primary-dark);
	transform: translate(-50%, -50%) scale(1.05);
}

.section-videos .videos-item h6 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.25;
	padding: 14px 14px 18px;
	margin: 0;
	text-transform: none;
}

.videos-page-container .videos-tabs {
	display: flex;
	gap: 24px;
	margin-bottom: 30px;
	border-bottom: 1px solid #dfdfdf;
}

.videos-page-container .videos-tab {
	border: none;
	background: transparent;
	color: #7a7a7a;
	padding: 0 0 12px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.2px;
	position: relative;
	transition: color 0.2s ease;
}

.videos-page-container .videos-tab.is-active {
	color: #1f1f1f;
}

.videos-page-container .videos-tab:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background-color: transparent;
	transition: background-color 0.2s ease;
}

.videos-page-container .videos-tab.is-active:after {
	background-color: #123C66;
}

.videos-page-container .videos-tab-panel {
	display: none;
}

.videos-page-container .videos-tab-panel.is-active {
	display: block;
}

.videos-page-container .videos-grid {
	display: flex;
	flex-wrap: wrap;
}

.videos-page-container .videos-grid > [class*="col-"] {
	display: flex;
	align-items: flex-start;
	margin-bottom: 28px;
}

.videos-page-container .videos-item {
	width: 100%;
	background-color: #fafafa;
	border: 1px solid #ececec;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.videos-page-container .videos-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.videos-page-container .video-item-holder {
	min-height: unset;
}

.videos-page-container .youtube-image-container {
	margin: 0;
	max-width: 100%;
	width: 100%;
}

.videos-page-container div.youtube-thumb-box {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: #f1f1f1;
}

.videos-page-container .videos-item-reel {
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

.videos-page-container .videos-item-reel div.youtube-thumb-box {
	aspect-ratio: 9 / 16;
}

.videos-page-container img.youtube-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	transition: transform 0.3s ease;
}

.videos-page-container .testimonial-video-container:hover .youtube-thumb-img {
	transform: scale(1.04);
}

.videos-page-container div.youtube-thumb-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.65);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.videos-page-container .testimonial-video-container:hover .youtube-thumb-play {
	background-color: var(--brand-primary-dark);
	transform: translate(-50%, -50%) scale(1.05);
}

@media (max-width: 767px) {
	.videos-page-container .videos-tabs {
		gap: 16px;
		margin-bottom: 20px;
	}

	.videos-page-container .videos-grid > [class*="col-"] {
		margin-bottom: 20px;
	}

	.videos-page-container .videos-item-reel {
		max-width: 260px;
	}
}

/* VIDEOS END */

/* TREATMENTS PAGE */
.treatments-page-container {
	padding-top: 40px;
	padding-bottom: 60px;
}

.treatments-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
	padding: 6px;
	background: #f5f2ef;
	border-radius: 14px;
}

.treatments-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	border: none;
	background: transparent;
	color: #5a5a5a;
	padding: 12px 22px;
	font-weight: 600;
	font-size: 15px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.treatments-tab img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	border-radius: 6px;
}

.treatments-tab:hover {
	background: rgba(255, 255, 255, 0.7);
	color: #1f1f1f;
}

.treatments-tab.is-active {
	background: #fff;
	color: #1f1f1f;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.treatments-tab.is-active span {
	color: #123C66;
}

.treatments-tab-panel {
	display: none;
}

.treatments-tab-panel.is-active {
	display: block;
	animation: treatmentsFadeIn 0.35s ease;
}

@keyframes treatmentsFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.treatment-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #eceae8;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.treatment-card-thumb {
	display: block;
	height: 240px;
	overflow: hidden;
}

.treatment-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.treatment-card:hover .treatment-card-thumb img {
	transform: scale(1.05);
}

.treatment-card-body {
	padding: 18px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.treatment-card-title {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 8px;
	line-height: 1.3;
}

.treatment-card-title a {
	color: #1f1f1f;
	text-decoration: none;
	transition: color 0.2s;
}

.treatment-card-title a:hover {
	color: #123C66;
}

.treatment-card-body p {
	color: #555;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 16px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.treatment-card-body .btn {
	margin-top: auto;
	align-self: flex-start;
	margin-bottom: 6px;
}

.treatments-page-container .row {
	display: flex;
	flex-wrap: wrap;
}

.treatments-page-container .row > [class*="col-"] {
	display: flex;
	margin-bottom: 28px;
}

@media (max-width: 767px) {
	.treatments-tabs {
		gap: 6px;
		padding: 4px;
		border-radius: 10px;
		margin-bottom: 28px;
	}

	.treatments-tab {
		padding: 10px 14px;
		font-size: 13px;
		border-radius: 8px;
	}

	.treatments-tab img {
		width: 22px;
		height: 22px;
	}

	.treatment-card-thumb {
		height: 200px;
	}
}
/* TREATMENTS PAGE END */

.ba-img {margin-bottom: 16px;}

.top-treatments-title {font-size: 18px; margin-top: 8px;}

.gallery-item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 15px;
	text-align: center;
	overflow: hidden;
}

.gallery-item-info .treatment-sub-title {
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-transform: none;
}

.gallery-item-info p,
.gallery-item-info a {
	text-transform: none;
}

.gallery-item-info p:first-child {
	margin-bottom: 10px;
}

.gallery-item-info > a:last-child {
	margin-top: auto;
	margin-bottom: 15px;
	align-self: center;
}

#sub-page-content .row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

#sub-page-content .row > [class*="col-"] {
	display: flex;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 30px;
}

#main-banner .owl-controls {
	position: absolute;
	top: 65%;
	left: 0;
	right: 0;
	width: 100%;
	transform: translateY(-65%);
	pointer-events: none;
}

#main-banner .owl-pagination {
	display: none;
}

#main-banner .owl-controls .owl-buttons {
	display: flex;
	justify-content: space-between;
	padding: 0 24px;
}

#main-banner .owl-controls .owl-prev,
#main-banner .owl-controls .owl-next {
	position: static;
	color: #fff;
	font-size: 28px;
	pointer-events: auto;
}

#main-banner .owl-controls .owl-next {
	margin-right: 24px;
}

#main-banner .owl-controls .owl-prev:hover,
#main-banner .owl-controls .owl-next:hover {
	color: rgba(255,255,255,.7);
}

.owl-controls {
	right: 36px;
    top: 40%;
    width: 100%;
}

.owl-controls .owl-buttons .owl-next, .owl-controls .owl-buttons .owl-prev {
	width: 0px;
	height: 0px;
	font-size: 24px;
}

.owl-controls .owl-prev {
	left: 12px;
	color: #434343;
	transition: 0.25s;
}

.owl-controls .owl-next {
	position: absolute;
	right: -40px;
	color: #434343;
	transition: 0.25s;
}

.owl-controls .owl-prev:hover,
.owl-controls .owl-next:hover {
	color: #123C66;
}

.bottom-content-form {
	background: #123C66;
	padding: 36px;
}

#form-contact input[type="text"],
#form-contact input[type="email"],
#form-contact input[type="number"] {
	width: 100%;
}

#form-contact .selector {
	width: 100% !important;
}

.contact-hero {
	background-color: #1f1f1f;
	padding: 80px 0 60px;
}

.contact-hero > .container > .row {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

.contact-hero-info {
	display: flex;
	flex-direction: column;
	padding-right: 50px;
}

.contact-hero-info h1 {
	color: #fff;
	font-size: 42px;
	font-weight: normal;
	margin: 0 0 14px;
}

.contact-hero-info > p {
	color: rgba(255,255,255,.6);
	font-size: 16px;
	line-height: 26px;
	margin: 0 0 32px;
}

.contact-info-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact-info-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255,255,255,.06);
	border-radius: 10px;
	padding: 16px 20px;
	color: #fff;
	text-decoration: none;
	transition: background-color .25s;
}

a.contact-info-card:hover {
	background: rgba(255,255,255,.1);
	color: #fff;
	text-decoration: none;
}

.contact-info-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #123C66;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.contact-info-label {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.45);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 2px;
}

.contact-info-value {
	display: block;
	font-size: 15px;
	color: #fff;
	line-height: 1.4;
}

.contact-belgeler {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.contact-belgeler a {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
}

.contact-belgeler img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	transition: opacity .25s;
}

.contact-belgeler a:hover img {
	opacity: .85;
}

.contact-socials {
	display: flex;
	gap: 12px;
	margin-top: auto;
	padding-top: 32px;
}

.contact-socials a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.2);
	color: rgba(255,255,255,.7);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: background-color .25s, color .25s, border-color .25s;
}

.contact-socials a:hover {
	background-color: #123C66;
	border-color: #123C66;
	color: #fff;
}

.contact-form-card {
	background: #fff;
	border-radius: 14px;
	padding: 40px;
}

.contact-form-card h2 {
	font-size: 28px;
	font-weight: 600;
	color: #1f1f1f;
	margin: 0 0 28px;
}

.contact-form-card .row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
}

.contact-form-card .row > [class*="col-"] {
	padding-left: 8px;
	padding-right: 8px;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="number"],
.contact-form-card textarea,
.contact-form-card .selector {
	width: 100% !important;
	border: 1px solid #d6d6d6 !important;
	border-radius: 8px !important;
	padding: 12px 14px !important;
	margin-bottom: 14px !important;
	color: #333 !important;
	height: 48px !important;
	box-shadow: none !important;
	font-size: 14px;
	box-sizing: border-box;
}

.contact-form-card textarea {
	min-height: 130px !important;
	height: auto !important;
	resize: vertical;
}

.contact-form-card input[type="text"]:focus,
.contact-form-card input[type="email"]:focus,
.contact-form-card input[type="tel"]:focus,
.contact-form-card textarea:focus {
	border-color: #123C66 !important;
	outline: none;
}

.contact-form-card input[type="submit"] {
	width: 100% !important;
	background-color: #50504f !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 14px !important;
	height: auto !important;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: background-color .25s;
	margin-bottom: 0 !important;
}

.contact-form-card input[type="submit"]:hover {
	background-color: #123C66 !important;
}

.contact-map {
	line-height: 0;
}

.contact-map iframe {
	border: none;
	display: block;
}

.inline-form .row {
	margin-bottom: 24px;
}

.inline-form input {
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #fff;
	border-radius: 0px;
	padding: 0px;
	-webkit-box-shadow: none;
	color: #fff;
	width: 100%;
	height: 40px;
}

.inline-form div.selector {
	width: 100% !important;
	-webkit-appearance: none;
    -moz-appearance : none;
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #fff;
	border-radius: 0px;
	padding: 0px;
	-webkit-box-shadow: none;
	color: #fff;
}

.inline-form .selector span {
	width: 100% !important;
	color: #fff;
	padding-left: 0px;
	font-size: 14px;
}

.inline-form input:focus { box-shadow: none; }

.inline-form input:focus::placeholder {color: transparent;}

.inline-form input::placeholder {color: #fff;}

.inline-form button {
	background-color: #fff;
	color: #525866;
	width: 100%;
	height: 48px;
	border: none;
	border-radius: 8px;
}

.inline-form button:hover {
	color: #fff;
}

.copyright ul {
	list-style: none;
    display: inline-flex;
}

.copyright ul li {
	margin-right: 16px;
}

.copyright ul li a {
	color: #c4c4c4;
	font-size: 10px;
}

.float-socials {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 9999;
    list-style: none;
}

.float-socials li {
    margin-top: 12px;
}

.float-socials img {
    width: 50px;
    height: 50px;
}

.social-tiktok {
	border-radius: 20px;
    background-color: #fff;
    width: 29px;
    margin-top: -4px;
}

footer {
	padding-bottom: 0;
}

footer.dark .copyright {
	margin-bottom: 0;
}

@media(max-width: 1036px) {
	.home-lead-card {
		padding: 24px 18px 14px;
		border-radius: 14px;
	}

	.home-lead-card .slider-title {
		font-size: 24px;
	}

	.aboutme-feature-content {
		padding: 32px;
	}

	.aboutme-feature-title {
		font-size: 32px;
		margin-bottom: 14px;
	}

	.inline-form button { margin-top: 16px; }
}

@media (max-width: 767px) {
	.toggle-menu .dropdown-menu { display: block !important; }
	.top-row .navbar-nav {
		text-align: center;
		display: block;
		float: unset;
	}

	.top-row .navbar-nav li {
		border-left: none;
	}

	h2.resp-accordion {
		font-size: 24px;
	}

	h2.resp-accordion img {
		max-width: 60px;
	}

	.entry-title {
		padding: unset;
		padding-block: 0px;
	}

	.float-socials {
		left: unset;
		right: 19px;
    	bottom: 80px;
    	z-index: 999999;
	}

	.popular-item,
	.videos-item,
	.ba-item,
	.news-item {
		margin-inline: 28px;
	}

	.owl-controls .owl-prev {
		left: 38px;
	}

	.owl-controls .owl-next {
		right: -12px;
	}

	.nav li a i {
		display: inline-block;
	}

	#content-side-img {
		display: none;
	}

	.aboutme-feature-card {
		display: block;
	}

	.aboutme-feature-content {
		padding: 24px;
	}

	.aboutme-feature-title {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.aboutme-feature-image {
		min-height: 260px;
	}

	.treatment-banner-holder {
		min-height: 180px;
	}

	.section-news .news-contents {
		min-height: unset;
	}

	.faq-home-row {
		display: block;
	}

	.faq-home-image-col {
		display: none;
	}

	.tm-card {
		padding: 24px 20px 22px;
		height: auto;
	}

	.tm-text {
		font-size: 15px;
		line-height: 24px;
	}

	.tm-avatar {
		width: 38px;
		height: 38px;
		font-size: 13px;
	}

	.tm-name {
		font-size: 14px;
	}

	.contact-hero {
		padding: 50px 0;
	}

	.contact-hero .row {
		display: block;
	}

	.contact-hero-info {
		padding-right: 15px;
		margin-bottom: 36px;
	}

	.contact-hero-info h1 {
		font-size: 32px;
	}

	.contact-socials {
		padding-top: 24px;
	}

	.contact-form-card {
		padding: 28px 22px;
	}
}

@media (min-width: 992px) {
	.navbar-default {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.navbar::before, .navbar::after {
		display: none;
	}

	.fixed-header #content-index, .fixed-header .sub-page-banner, .fixed-header .contact-hero {
	    margin-top: 132px;
	}

	.fixed-header .main-banner {
		top: 132px;
	}
}

@media (max-width: 480px) {
	.home-lead-section {
		padding: 28px 0 10px;
	}

	.home-lead-card .slider-title {
		font-size: 21px;
	}

	.home-lead-form input {
		margin-bottom: 12px;
	}

	.main-banner img {
		object-fit: cover;
		height: clamp(154px, 38vw, 75vh);
		object-position: center left;
	}

	.sub-page-banner {
    	padding-bottom: 0px;
	}
}

	:root {
		--brand-primary: #2383D8;
		--brand-primary-dark: #123C66;
		--brand-secondary: #2383D8;
		--brand-surface: #EAF5FF;
		--brand-accent: #123C66;
		--brand-muted: #6E8EAC;
		--brand-white: #F7FBFF;
		--brand-black: #1a1a1a;
		--brand-border: rgba(18, 60, 102, 0.14);
		--brand-shadow: rgba(18, 60, 102, 0.13);
	}

a:hover,
a:focus,
.main-color,
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.h1.light,
.h2.light,
.h3.light,
.h4.light,
.h5.light,
.h6.light,
.faq-home-question i,
.contact-socials a:hover,
.footer-nav li a:hover,
.popular-post h4 a:hover,
.blog-item .blog-title a:hover,
.sidebar-nav .panel-body a:hover,
.sidebar-nav .panel-body a.active {
	color: var(--brand-primary) !important;
}

	.bg-default,
	.btn-default,
	.procedures h3,
	.contact-info-icon,
.contact-socials a,
.videos-page-container .videos-tab.is-active:after,
.owl-controls .owl-buttons .owl-prev:hover,
.owl-controls .owl-buttons .owl-next:hover,
.panel-title.active span {
		background-color: var(--brand-primary-dark) !important;
	}

	.btn-default,
	.home-lead-form input[type="submit"],
	.contact-form-card input[type="submit"],
	.inline-form .btn-primary {
		background: var(--brand-primary) !important;
		border: none !important;
		box-shadow: 0 12px 30px rgba(18, 60, 102, 0.2) !important;
	}

.btn-default:hover,
.home-lead-form input[type="submit"]:hover,
.contact-form-card input[type="submit"]:hover,
	.inline-form .btn-primary:hover {
		background: var(--brand-primary-dark) !important;
	}

.main-color,
.resp-tab-active,
.panel-title.active a,
footer h4,
.footer-widget h4 {
	color: var(--brand-primary) !important;
}

footer h4 span,
.dropdown-menu,
.videos-page-container .videos-tab.is-active:after {
	border-color: var(--brand-primary) !important;
}

	.top-row {
		background: var(--brand-primary);
	}

.top-row .locale-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-nav > li:hover a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
	background-color: rgba(14, 113, 184, 0.12);
}

.home-lead-section,
.section-videos,
.section-aboutme,
.section-contact {
	background: linear-gradient(180deg, var(--brand-surface) 0%, #ffffff 100%);
}

	.contact-hero {
		background: var(--brand-primary);
	}

.home-lead-card,
.aboutme-feature-card,
.faq-home-item,
.press-card a,
.treatment-card,
.contact-form-card,
.contact-info-card,
.videos-item,
.blog-item.blog-full-width,
.gallery-item-info,
.tm-card {
	border-color: var(--brand-border) !important;
		box-shadow: 0 18px 40px rgba(18, 60, 102, 0.08);
}

.faq-home-item:hover,
.press-card a:hover,
.contact-info-card:hover,
.treatment-card:hover {
		box-shadow: 0 22px 44px rgba(18, 60, 102, 0.12);
}

.section-videos,
.treatments-tabs,
.videos-page-container .videos-tab,
.contact-map,
.blog-thumbnail,
.contact-form-card,
.faq-home-item,
.videos-item,
.treatment-card {
	background-color: var(--brand-surface);
}

.home-lead-form input:focus,
.home-lead-form .selector:focus,
.appointment-sec2 input:focus,
.appointment-sec2 textarea:focus,
.inline-form input:focus,
.contact-form-card input:focus,
.contact-form-card textarea:focus {
	border-color: var(--brand-primary) !important;
		box-shadow: 0 0 0 4px rgba(35, 131, 216, 0.14) !important;
}

.contact-info-card,
.contact-form-card,
.faq-home-item,
.press-card a,
.treatment-card,
.videos-item,
.tm-card,
.btn,
.navbar-default .navbar-nav > li > a {
	transition: all 0.2s ease;
}

	.tm-avatar {
		background: var(--brand-primary);
		color: #fff;
	}

footer.dark {
	background: #0C2335;
}

footer h4 span {
	border-bottom-color: rgba(255, 255, 255, 0.14);
}

.social3 li a i {
	color: var(--brand-primary) !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(45, 170, 225, 0.45);
	outline-offset: 2px;
}

	@media (prefers-reduced-motion: reduce) {
		* {
			animation: none !important;
			transition: none !important;
			scroll-behavior: auto !important;
		}
	}

/* Modern polish */
::selection {
	background: rgba(35, 131, 216, 0.18);
	color: var(--brand-primary);
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.section-title h2 {
	color: var(--brand-primary);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
	text-wrap: balance;
}

p {
	text-wrap: pretty;
}

.container {
	max-width: 1240px;
}

.top-row {
	border-bottom: 1px solid rgba(247, 251, 255, 0.16);
}

.top-row ul li {
	border-left: 1px solid rgba(247, 251, 255, 0.16);
}

.navbar-default {
	border: 0;
	box-shadow: 0 18px 36px rgba(18, 60, 102, 0.08);
}

.navbar-default .navbar-nav > li > a {
	color: var(--brand-primary);
	border-radius: 10px;
	font-weight: 600;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-nav > li:hover a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
	background-color: rgba(35, 131, 216, 0.1) !important;
	color: var(--brand-primary) !important;
}

.dropdown-menu {
	border-top: 4px solid var(--brand-primary-dark) !important;
	border-radius: 0 0 14px 14px;
	box-shadow: 0 22px 44px rgba(18, 60, 102, 0.14);
}

.btn,
.btn-default,
.btn-primary,
input[type="submit"],
.inline-form-submit {
	border-radius: 10px !important;
	color: #fff !important;
	font-weight: 700;
	letter-spacing: 0;
	transform: translateY(0);
	transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease !important;
}

.btn:hover,
.btn:focus,
.btn-default:hover,
.btn-default:focus,
.btn-primary:hover,
.btn-primary:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.inline-form-submit:hover,
.inline-form-submit:focus {
	color: #fff !important;
	transform: translateY(-2px);
	text-decoration: none;
}

.btn:active,
.btn-default:active,
.btn-primary:active,
input[type="submit"]:active,
.inline-form-submit:active {
	transform: translateY(0) scale(.99);
}

.home-lead-section {
	padding: 38px 0 20px;
	background:
		radial-gradient(circle at 12% 0%, rgba(35, 131, 216, .16), transparent 32%),
		linear-gradient(180deg, var(--brand-surface) 0%, #fff 100%);
}

.home-lead-card,
.aboutme-feature-card,
.contact-form-card,
.faq-home-item,
.section-news .news-item,
.treatment-card,
.press-card a,
.videos-item,
.tm-card {
	border: 1px solid var(--brand-border) !important;
	box-shadow: 0 18px 42px rgba(18, 60, 102, 0.09) !important;
}

.home-lead-form input,
.appointment-sec2 input[type="text"],
.appointment-sec2 input[type="email"],
.appointment-sec2 input[type="number"],
.appointment-sec2 textarea,
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card textarea {
	border-color: rgba(18, 60, 102, 0.14) !important;
	background: #fff !important;
	color: var(--brand-black) !important;
}

.section-aboutme,
.section-faq,
.section-press {
	background:
		radial-gradient(circle at 92% 14%, rgba(15, 100, 102, 0.09), transparent 30%),
		linear-gradient(180deg, #fff 0%, var(--brand-surface) 100%) !important;
}

.aboutme-feature-card {
	border-radius: 22px;
}

.aboutme-feature-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
	color: var(--brand-primary) !important;
}

.aboutme-feature-text,
#sub-page-content .big-font,
#sub-page-content .big-font p {
	color: #36495d;
	line-height: 1.78;
}

.profile-stats-section {
	padding: 24px 0 68px;
	background: linear-gradient(180deg, var(--brand-surface) 0%, #fff 100%);
}

.profile-stats-section-about {
	padding-top: 42px;
}

.profile-stats-card {
	overflow: hidden;
	border-radius: 24px;
	background: var(--brand-primary);
	color: #fff;
	box-shadow: 0 28px 60px rgba(18, 60, 102, 0.22);
}

.profile-stats-intro {
	max-width: 980px;
	margin: 0 auto;
	padding: 52px 48px 34px;
	text-align: center;
}

.profile-stats-intro h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(30px, 4vw, 48px);
}

.profile-stats-intro p {
	margin: 0 auto;
	max-width: 860px;
	color: rgba(247, 251, 255, .86);
	font-size: 18px;
	line-height: 1.65;
}

.profile-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid rgba(247, 251, 255, 0.2);
}

.profile-stat-item {
	padding: 34px 30px 40px;
	text-align: center;
	border-right: 1px solid rgba(247, 251, 255, 0.2);
}

.profile-stat-item:last-child {
	border-right: 0;
}

.profile-stat-icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(247, 251, 255, 0.13);
	color: #fff;
	font-size: 24px;
}

.profile-stat-item strong {
	display: block;
	font-size: clamp(44px, 6vw, 76px);
	line-height: .9;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.profile-stat-item span {
	display: block;
	margin-top: 16px;
	color: rgba(247, 251, 255, .86);
	font-size: 17px;
	font-weight: 700;
}

.testimonials {
	background: var(--brand-primary) !important;
	background-image: none !important;
}

.testimonials-header h2 {
	font-weight: 700;
	color: #fff;
}

.tm-card {
	height: 430px;
	background: #fff;
	border-color: transparent !important;
	backdrop-filter: none;
}

.tm-quote {
	color: #7DE3DF;
}

.tm-card:hover {
	transform: translateY(-4px);
}

.faq-home-item {
	background: #fff;
	backdrop-filter: none;
}

.faq-home-question {
	color: var(--brand-primary);
}

.faq-home-question i {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(35, 131, 216, 0.1);
	color: var(--brand-primary) !important;
}

.faq-home-image {
	max-width: 500px;
	filter: drop-shadow(0 26px 42px rgba(18, 60, 102, 0.16));
}

.contact-section-image {
	width: 100%;
	max-height: 620px;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 24px 42px rgba(18, 60, 102, 0.16));
}

.section-contact {
	background:
		radial-gradient(circle at 8% 8%, rgba(35, 131, 216, 0.14), transparent 28%),
		linear-gradient(180deg, #fff 0%, var(--brand-surface) 100%) !important;
}

.section-contact .appointment-sec2 {
	border: 1px solid var(--brand-border);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 22px 46px rgba(18, 60, 102, 0.1);
}

.bottom-content-form {
	background:
		radial-gradient(circle at 92% 12%, rgba(35, 131, 216, 0.18), transparent 26%),
		linear-gradient(135deg, #081D32 0%, var(--brand-primary) 100%);
}

.inline-form-submit {
	font-size: 16px;
	font-weight: 700;
	margin-top: 16px;
	width: 100%;
	height: 48px;
}

.sub-page-banner {
	background:
		radial-gradient(circle at 18% 10%, rgba(35, 131, 216, 0.2), transparent 32%),
		linear-gradient(135deg, #081D32 0%, var(--brand-primary) 70%, var(--brand-primary-dark) 100%) !important;
	min-height: 260px;
	display: flex;
	align-items: center;
}

.sub-page-banner .container {
	width: 100%;
}

.entry-title {
	padding: 0;
	max-width: 1040px;
	margin: 0 auto;
	color: #fff;
	font-size: clamp(34px, 5vw, 64px);
	font-weight: 800;
	line-height: 1.08;
	text-transform: none;
}

#sub-page-content {
	background: #fff;
	padding-top: 58px;
	padding-bottom: 58px;
}

#sub-page-content .big-font {
	max-width: 1160px;
}

#sub-page-content .big-font img {
	max-width: 100%;
	height: auto;
}

.blog-item.blog-full-width,
.section-news .news-item,
.treatment-card {
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	transition: transform .24s ease, box-shadow .24s ease;
}

.blog-item.blog-full-width:hover,
.section-news .news-item:hover,
.treatment-card:hover {
	transform: translateY(-5px);
}

.blog-content,
.section-news .news-contents,
.treatment-card-body {
	padding: 22px 22px 24px;
}

.blog-title a,
.section-news .news-title a,
.treatment-card-title a {
	color: var(--brand-primary);
}

.faq-section .panel-group .panel {
	border: 1px solid var(--brand-border);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(18, 60, 102, 0.07);
	overflow: hidden;
	margin-bottom: 12px;
}

.faq-section .panel-default > .panel-heading {
	background: #fff;
	padding: 0;
}

.faq-section .panel-title a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	color: var(--brand-primary) !important;
	font-weight: 700;
	text-decoration: none;
}

.faq-section .panel-title a span {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--brand-white) !important;
	color: var(--brand-primary);
	flex: 0 0 auto;
}

.faq-section .panel-body {
	border-top: 1px solid var(--brand-border) !important;
	color: #40566B;
	line-height: 1.75;
}

.treatments-tabs {
	background: var(--brand-surface);
	border: 1px solid var(--brand-border);
	border-radius: 18px;
	box-shadow: 0 18px 36px rgba(18, 60, 102, 0.08);
}

.treatments-tab {
	color: var(--brand-primary);
	border: 1px solid transparent;
}

.treatments-tab:hover,
.treatments-tab.is-active {
	background: #fff;
	color: var(--brand-primary);
	border-color: var(--brand-border);
}

.treatments-tab.is-active span {
	color: var(--brand-primary-dark);
}

.contact-hero {
	position: relative;
	overflow: hidden;
}

.contact-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 12% 12%, rgba(247, 251, 255, 0.14), transparent 28%);
	pointer-events: none;
}

.contact-hero .container {
	position: relative;
}

.contact-info-card {
	border: 1px solid rgba(247, 251, 255, 0.14);
	background: rgba(247, 251, 255, 0.08);
}

.contact-info-card:hover {
	transform: translateY(-2px);
}

.contact-info-icon {
	border-radius: 14px;
	background: rgba(247, 251, 255, 0.14) !important;
}

footer.dark {
	background:
		radial-gradient(circle at 12% 0%, rgba(35, 131, 216, .12), transparent 26%),
		#081D32 !important;
}

footer h4 span {
	color: #fff !important;
}

.footer-link-mark {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	margin-right: 9px;
}

.social3 li a i,
.contact-socials a {
	border-radius: 14px !important;
}

.social3 li a:hover i,
.float-socials a:hover img {
	transform: translateY(-2px);
}

.float-socials img {
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(18, 60, 102, 0.18);
	transition: transform .2s ease, box-shadow .2s ease;
}

@media (max-width: 991px) {
	.navbar-brand.site-logo span {
		font-size: 16px;
	}

	.profile-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.profile-stat-item:nth-child(2) {
		border-right: 0;
	}

	.profile-stat-item:nth-child(-n+2) {
		border-bottom: 1px solid rgba(247, 251, 255, 0.2);
	}
}

@media (max-width: 767px) {
	.navbar-brand.site-logo {
		margin-left: 15px;
	}

	.navbar-brand.site-logo img {
		width: 52px;
		height: 40px;
	}

	.navbar-brand.site-logo span {
		max-width: 150px;
		white-space: normal;
	}

	.profile-stats-intro {
		padding: 36px 24px 26px;
	}

	.profile-stats-grid {
		grid-template-columns: 1fr;
	}

	.profile-stat-item {
		border-right: 0;
		border-bottom: 1px solid rgba(247, 251, 255, 0.2);
	}

	.profile-stat-item:last-child {
		border-bottom: 0;
	}

	.sub-page-banner {
		min-height: 190px;
	}

	.entry-title {
		font-size: clamp(28px, 9vw, 42px);
	}
}

/* Client polish pass */
.navbar-brand.site-logo {
	gap: 0;
	margin-top: 4px;
}

.navbar-brand.site-logo img {
	width: 88px;
	height: 60px;
	object-fit: contain;
	object-position: center;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}

.navbar-brand.site-logo span {
	display: none;
}

.top-row,
footer.dark,
.bottom-content-form,
.contact-hero,
.sub-page-banner {
	background: var(--brand-primary) !important;
	background-image: none !important;
}

footer.dark .copyright {
	background: var(--brand-black) !important;
}

.btn-default,
.btn-primary,
.home-lead-form input[type="submit"],
.contact-form-card input[type="submit"],
.inline-form .btn-primary,
.inline-form-submit,
.appointment-sec2 input[type="submit"] {
	background: var(--brand-primary) !important;
	background-color: var(--brand-primary) !important;
	color: #fff !important;
	border: 0 !important;
	box-shadow: 0 10px 24px rgba(18, 60, 102, 0.18) !important;
}

.btn-default:hover,
.btn-default:focus,
.btn-primary:hover,
.btn-primary:focus,
.home-lead-form input[type="submit"]:hover,
.home-lead-form input[type="submit"]:focus,
.contact-form-card input[type="submit"]:hover,
.contact-form-card input[type="submit"]:focus,
.inline-form .btn-primary:hover,
.inline-form .btn-primary:focus,
.inline-form-submit:hover,
.inline-form-submit:focus,
.appointment-sec2 input[type="submit"]:hover,
.appointment-sec2 input[type="submit"]:focus {
	background: var(--brand-primary-dark) !important;
	background-color: var(--brand-primary-dark) !important;
	color: #fff !important;
	box-shadow: 0 14px 28px rgba(18, 60, 102, 0.24) !important;
}

.section-videos div.youtube-thumb-play,
.videos-page-container div.youtube-thumb-play {
	background-color: var(--brand-primary);
	color: #fff;
}

.section-videos .testimonial-video-container:hover .youtube-thumb-play,
.videos-page-container .testimonial-video-container:hover .youtube-thumb-play {
	background-color: var(--brand-primary-dark);
	color: #fff;
}

.section-aboutme-feature {
	background: #fff !important;
}

.home-lead-section,
.section-aboutme,
.section-faq,
.section-press,
.section-contact {
	background: #fff !important;
	background-image: none !important;
}

.aboutme-feature-card {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	align-items: stretch;
	border-radius: 22px;
	background: #fff;
	overflow: hidden;
	border: 1px solid var(--brand-border) !important;
}

.aboutme-feature-card:before,
.aboutme-feature-card:after {
	display: none;
}

.aboutme-feature-content,
.aboutme-feature-image-col {
	width: auto;
	float: none;
}

.aboutme-feature-content {
	padding: 42px;
	display: flex;
	flex-direction: column;
}

.aboutme-feature-title {
	margin-bottom: 14px;
}

.aboutme-feature-text {
	max-width: 68ch;
	margin-bottom: 0;
}

.aboutme-feature-text p {
	color: #36495d;
	font-size: 17px;
	line-height: 1.75;
	margin-bottom: 0;
}

.profile-stats-compact {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 26px 0 24px;
}

.profile-stat-compact-item {
	min-height: 126px;
	padding: 16px 14px;
	border-radius: 14px;
	background: var(--brand-surface);
	border: 1px solid var(--brand-border);
	color: var(--brand-primary);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.profile-stat-compact-item i {
	color: var(--brand-primary-dark);
	font-size: 20px;
	margin-bottom: 10px;
}

.profile-stat-compact-item strong {
	display: block;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.profile-stat-compact-item span {
	display: block;
	margin-top: 8px;
	color: var(--brand-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.profile-stats-section {
	display: none;
}

.about-page-card {
	display: grid;
	grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
	gap: 0;
	background: #fff;
	border: 1px solid var(--brand-border);
	border-radius: 22px;
	box-shadow: 0 18px 42px rgba(18, 60, 102, 0.09);
	overflow: hidden;
}

.about-page-image {
	background: var(--brand-surface);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 24px 24px 0;
}

.about-page-image img {
	width: 100%;
	height: 100%;
	max-height: 760px;
	object-fit: contain;
	object-position: bottom center;
}

.about-page-content {
	padding: 42px;
	color: #36495d;
	line-height: 1.78;
}

.about-page-content p {
	max-width: 76ch;
}

.about-page-stats {
	margin-top: 34px;
	padding-top: 28px;
	border-top: 1px solid var(--brand-border);
}

.about-page-stats h2 {
	font-size: clamp(28px, 3vw, 38px);
	margin-bottom: 10px;
}

.about-page-stats > p {
	color: var(--brand-muted);
	margin-bottom: 0;
}

.contact-section-image {
	border-radius: 20px;
	box-shadow: 0 18px 38px rgba(18, 60, 102, 0.12);
	object-fit: cover;
	aspect-ratio: 4 / 5;
	background: var(--brand-surface);
	filter: none;
}

@media (max-width: 991px) {
	.aboutme-feature-card,
	.about-page-card {
		grid-template-columns: 1fr;
	}

	.profile-stats-compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aboutme-feature-image {
		min-height: 360px;
	}
}

@media (max-width: 767px) {
	.navbar-brand.site-logo img {
		width: 88px;
		height: 60px;
	}

	.aboutme-feature-content,
	.about-page-content {
		padding: 28px 22px;
	}

	.profile-stats-compact {
		grid-template-columns: 1fr;
	}

	.profile-stat-compact-item {
		min-height: 104px;
	}
}

/* Visual correction pass */
body,
#wrapper {
	background: #fff;
}

.home-lead-section,
.section-aboutme,
.section-aboutme-feature,
.section-faq,
.section-contact {
	background: #fff !important;
	background-image: none !important;
}

.section-videos,
.section-press:not(.testimonials),
.section-beforeafter {
	background: var(--brand-white) !important;
	background-image: none !important;
}

.navbar-default {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.navbar-nav > li > .dropdown-menu,
.dropdown-menu {
	min-width: 340px !important;
	padding: 8px;
	background: #fff !important;
	border: 0 !important;
	border-top: 3px solid var(--brand-primary-dark) !important;
	border-radius: 0 0 18px 18px;
	box-shadow: 0 22px 50px rgba(18, 60, 102, 0.15);
}

.navbar-nav > li:hover .dropdown-menu li a,
.dropdown-menu > li > a {
	display: block;
	padding: 13px 16px !important;
	background: #fff !important;
	color: #31475c !important;
	border-bottom: 1px solid rgba(18, 60, 102, 0.09) !important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	white-space: normal;
}

.dropdown-menu > li:last-child > a {
	border-bottom: 0 !important;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	background: var(--brand-white) !important;
	color: var(--brand-primary-dark) !important;
}

.aboutme-feature-card {
	max-width: 1180px;
	margin: 0 auto;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	align-items: end;
	border-radius: 18px;
	border: 1px solid rgba(18, 60, 102, 0.1) !important;
	box-shadow: 0 18px 45px rgba(18, 60, 102, 0.08) !important;
}

.aboutme-feature-content {
	padding: 34px 38px;
}

.aboutme-feature-title {
	font-size: clamp(34px, 4vw, 48px);
	line-height: 1.02;
	margin-bottom: 14px;
}

.aboutme-feature-text {
	max-width: 60ch;
}

.aboutme-feature-text p {
	font-size: 16px;
	line-height: 1.68;
}

.profile-stats-compact {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin: 20px 0 22px;
}

.profile-stat-compact-item {
	min-height: 86px;
	padding: 12px 12px;
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 9px;
	align-content: center;
	justify-content: stretch;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.12);
	box-shadow: none;
}

.profile-stat-compact-item i {
	grid-row: 1 / 3;
	font-size: 15px;
	margin: 3px 0 0;
	color: var(--brand-primary-dark);
}

.profile-stat-compact-item strong {
	font-size: clamp(22px, 2.1vw, 30px);
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}

.profile-stat-compact-item span {
	margin-top: 5px;
	font-size: 12px;
	line-height: 1.2;
	color: #5c7490;
}

.aboutme-feature-btn {
	align-self: flex-start;
	width: auto;
	min-width: 220px;
	padding: 13px 24px !important;
}

.aboutme-feature-image-col {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	align-self: stretch;
	background: #fff;
}

.aboutme-feature-image {
	width: 100%;
	height: auto;
	min-height: 0;
	max-height: 400px;
	object-fit: contain;
	object-position: bottom right;
}

.about-page-card {
	grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
	border-radius: 18px;
	border-color: rgba(18, 60, 102, 0.1);
	box-shadow: 0 18px 45px rgba(18, 60, 102, 0.08);
}

.about-page-image {
	background: #fff;
	padding: 20px 20px 0;
}

.about-page-image img {
	max-height: 520px;
}

.about-page-content {
	padding: 34px 38px;
}

.about-page-stats {
	margin-top: 26px;
	padding-top: 22px;
}

.about-page-stats h2 {
	font-size: clamp(24px, 2.5vw, 32px);
}

.testimonials {
	background: var(--brand-primary) !important;
	background-image: none !important;
	padding: 68px 0 76px;
}

.testimonials-header h2 {
	color: #fff !important;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: 0;
}

.testimonials-summary,
.testimonials p {
	color: rgba(247, 251, 255, 0.82) !important;
}

.testimonials .owl-controls .owl-prev,
.testimonials .owl-controls .owl-next {
	color: rgba(247, 251, 255, 0.82) !important;
}

.testimonials .owl-controls .owl-prev:hover,
.testimonials .owl-controls .owl-next:hover {
	color: #fff !important;
}

.tm-card {
	height: 390px;
	background: #fff !important;
	border: 0 !important;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(4, 22, 40, 0.24) !important;
	backdrop-filter: none;
}

.tm-card p,
.testimonials .tm-card p {
	color: #2f4052 !important;
}

.tm-text,
.tm-text p,
.testimonials .tm-text,
.testimonials .tm-text p {
	color: #2f4052 !important;
}

.tm-quote {
	color: var(--brand-primary-dark);
}

.tm-avatar {
	background: var(--brand-primary) !important;
	color: #fff !important;
}

.faq-home-item {
	backdrop-filter: none;
}

@media (max-width: 1199px) {
	.aboutme-feature-card {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	}

	.profile-stat-compact-item strong {
		font-size: 24px;
	}
}

@media (max-width: 991px) {
	.aboutme-feature-card,
	.about-page-card {
		grid-template-columns: 1fr;
	}

	.aboutme-feature-image,
	.about-page-image img {
		max-height: 440px;
	}
}

@media (max-width: 767px) {
	.navbar-nav > li > .dropdown-menu,
	.dropdown-menu {
		min-width: 0 !important;
		width: calc(100vw - 32px);
	}

	.aboutme-feature-content,
	.about-page-content {
		padding: 26px 20px;
	}

	.profile-stats-compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aboutme-feature-btn {
		width: 100%;
	}

	.tm-card {
		height: auto;
		min-height: 320px;
	}
}

/* Carousel shadow breathing room */
.section-news .owl-wrapper-outer,
.section-videos .owl-wrapper-outer,
.testimonials .owl-wrapper-outer,
.press-carousel .owl-wrapper-outer {
	padding: 24px 0 36px;
	margin: -24px 0 -36px;
	width: 100%;
	box-sizing: border-box;
}

.section-news .owl-carousel,
.section-videos .owl-carousel,
.testimonials .owl-carousel,
.press-carousel {
	overflow: visible;
}

/* Keep homepage sliders to exact visible item count */
#content-index .3-item-slider,
#content-index .3-item-slider.owl-carousel {
	overflow: hidden !important;
}

#content-index .3-item-slider .owl-wrapper-outer {
	width: 100% !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

#content-index .3-item-slider .owl-item {
	box-sizing: border-box !important;
}

@media (max-width: 767px) {
	.section-news .owl-wrapper-outer,
	.section-videos .owl-wrapper-outer,
	.testimonials .owl-wrapper-outer,
	.press-carousel .owl-wrapper-outer {
		padding: 18px 0 30px;
		margin: -18px 0 -30px;
		width: 100%;
	}
}

/* Color balance pass */
.top-row,
footer.dark,
footer.dark .copyright,
.bottom-content-form,
.testimonials {
	background: var(--brand-primary-dark) !important;
	background-color: var(--brand-primary-dark) !important;
	background-image: none !important;
}

footer.dark .copyright {
	border-top: 1px solid rgba(247, 251, 255, 0.12);
}

.navbar-default .navbar-nav > li > a,
.nav > li > a,
h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.section-title h2,
.aboutme-feature-title,
.faq-home-question,
.section-news .news-title a,
.treatment-card-title a,
.videos-page-container .videos-tab,
.main-color,
.dark-black,
.profile-stat-compact-item,
.profile-stat-compact-item i {
	color: var(--brand-primary-dark) !important;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-nav > li:hover a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.section-news .news-title a:hover,
.treatment-card-title a:hover,
a:hover,
a:focus {
	color: var(--brand-primary) !important;
}

.btn-default,
.btn-primary,
.home-lead-form input[type="submit"],
.contact-form-card input[type="submit"],
.inline-form .btn-primary,
.inline-form-submit,
.appointment-sec2 input[type="submit"] {
	background: var(--brand-primary) !important;
	background-color: var(--brand-primary) !important;
}

.btn-default:hover,
.btn-default:focus,
.btn-primary:hover,
.btn-primary:focus,
.home-lead-form input[type="submit"]:hover,
.home-lead-form input[type="submit"]:focus,
.contact-form-card input[type="submit"]:hover,
.contact-form-card input[type="submit"]:focus,
.inline-form .btn-primary:hover,
.inline-form .btn-primary:focus,
.inline-form-submit:hover,
.inline-form-submit:focus,
.appointment-sec2 input[type="submit"]:hover,
.appointment-sec2 input[type="submit"]:focus {
	background: var(--brand-primary-dark) !important;
	background-color: var(--brand-primary-dark) !important;
}

.profile-stat-compact-item strong,
.section-videos div.youtube-thumb-play,
.videos-page-container div.youtube-thumb-play,
.tm-avatar {
	background-color: transparent;
	color: var(--brand-primary) !important;
}

.tm-avatar,
.section-videos div.youtube-thumb-play,
.videos-page-container div.youtube-thumb-play {
	background: var(--brand-primary) !important;
	color: #fff !important;
}

.section-videos .testimonial-video-container:hover .youtube-thumb-play,
.videos-page-container .testimonial-video-container:hover .youtube-thumb-play {
	background: var(--brand-primary-dark) !important;
}

.service-box:hover {
	background-color: var(--brand-primary-dark) !important;
}

.faq-home-question i,
.panel-title.active span {
	background: var(--brand-primary-light) !important;
	color: var(--brand-primary) !important;
}

footer.dark h4,
footer.dark h4 span,
footer.dark .footer-widget h4,
footer.dark .footer-widget h4 span {
	color: #fff !important;
}

.testimonials h2,
.testimonials-header h2 {
	color: #fff !important;
}

.testimonials-summary,
.testimonials > .container > p,
.testimonials p {
	color: rgba(247, 251, 255, 0.82) !important;
}

.testimonials .tm-card p {
	color: #2f4052 !important;
}

footer.dark h4 span,
footer.dark .footer-widget h4 span {
	border-bottom-color: rgba(247, 251, 255, 0.18) !important;
}

footer.dark a,
footer.dark p,
footer.dark li,
footer.dark .contact-widget i,
footer.dark .copyright a,
footer.dark .copyright p {
	color: rgba(247, 251, 255, 0.78) !important;
}

footer.dark a:hover,
footer.dark .copyright a:hover {
	color: #fff !important;
}

.navbar-nav > li:hover .dropdown-menu li a,
.dropdown-menu > li > a {
	color: #31475c !important;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	color: var(--brand-primary) !important;
}

.section-more-actions {
	display: flex;
	justify-content: center;
	padding-top: 28px;
}

.section-more-actions .btn {
	min-width: 220px;
	padding: 14px 28px !important;
	text-align: center;
}

.section-contact .appointment-sec2 {
	max-width: 100%;
}

.section-contact .nhform {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.section-contact .nhform input,
.section-contact .nhform textarea,
.section-contact .nhform .iti {
	margin: 0 !important;
}

.section-contact .nhform textarea,
.section-contact .nhform input[type="submit"],
.section-contact .nhform #success {
	grid-column: 1 / -1;
}

@media (max-width: 767px) {
	.section-contact .nhform {
		grid-template-columns: 1fr;
	}
}

/* Unified heading system */
.section-title,
.section-title.text-center,
.section-title.text-left,
.testimonials-header {
	text-align: left !important;
	max-width: 900px;
	margin-left: 0;
	margin-right: auto;
	margin-bottom: 34px !important;
}

.section-contact .section-title {
	max-width: 760px;
}

.section-title h2,
.testimonials-header h2,
.aboutme-feature-title,
.entry-title,
.faq-section h2 {
	text-transform: none !important;
	letter-spacing: 0 !important;
	font-size: clamp(34px, 4.2vw, 52px) !important;
	line-height: 1.05 !important;
	font-weight: 800 !important;
	color: var(--brand-primary-dark) !important;
	margin: 0 !important;
}

.testimonials-header h2 {
	color: #fff !important;
}

.section-title h2 span,
.testimonials-header h2 span,
.aboutme-feature-title span,
.entry-title span,
.faq-section h2 span {
	font-weight: inherit !important;
}

.section-title p,
.testimonials-summary {
	max-width: 720px;
	margin: 14px 0 0 !important;
	text-align: left !important;
	font-size: 17px;
	line-height: 1.65;
}

.navbar-default .navbar-nav > li > a,
.footer-widget h4,
footer h4,
.contact-info-label,
.contact-info-value {
	text-transform: none !important;
	letter-spacing: 0 !important;
}

@media (max-width: 767px) {
	.section-title,
	.section-title.text-center,
	.section-title.text-left,
	.testimonials-header {
		max-width: 100%;
		margin-bottom: 26px !important;
	}

	.section-title h2,
	.testimonials-header h2,
	.aboutme-feature-title,
	.entry-title,
	.faq-section h2 {
		font-size: clamp(30px, 9vw, 40px) !important;
	}
}

/* Menu hover contrast */
.top-row a,
.top-row .navbar-nav > li > a,
.top-row .locale-link a {
	color: rgba(247, 251, 255, 0.92) !important;
}

.top-row .locale-link a {
	min-width: 44px;
	min-height: 44px;
	border-radius: 10px;
	background: transparent !important;
	text-align: center;
	justify-content: center;
}

.top-row a:hover,
.top-row a:focus,
.top-row .navbar-nav > li > a:hover,
.top-row .navbar-nav > li > a:focus {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.12) !important;
}

.top-row .locale-link a:hover,
.top-row .locale-link a:focus {
	color: var(--brand-primary-dark) !important;
	background: #fff !important;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.navbar-default .navbar-nav > li > a {
	color: var(--brand-primary-dark) !important;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > li:hover > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
	color: #fff !important;
	background: var(--brand-primary-dark) !important;
}

.navbar-default .navbar-nav > li:hover .dropdown-menu li a,
.navbar-default .dropdown-menu > li > a {
	color: #31475c !important;
	background: #fff !important;
}

.navbar-default .dropdown-menu > li > a:hover,
.navbar-default .dropdown-menu > li > a:focus {
	color: var(--brand-primary-dark) !important;
	background: var(--brand-primary-light) !important;
}

/* Modern social icons */
.site-social-link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: inherit !important;
	text-decoration: none !important;
	transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-social-icon {
	display: block;
	width: 18px;
	height: 18px;
	background: currentColor;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.site-social-icon-instagram {
	-webkit-mask-image: url("/onex/assets/libs/bootstrap-icons/icons/instagram.svg");
	mask-image: url("/onex/assets/libs/bootstrap-icons/icons/instagram.svg");
}

.site-social-icon-whatsapp {
	-webkit-mask-image: url("/onex/assets/libs/bootstrap-icons/icons/whatsapp.svg");
	mask-image: url("/onex/assets/libs/bootstrap-icons/icons/whatsapp.svg");
}

.site-social-icon-map {
	-webkit-mask-image: url("/onex/assets/libs/bootstrap-icons/icons/geo-alt-fill.svg");
	mask-image: url("/onex/assets/libs/bootstrap-icons/icons/geo-alt-fill.svg");
}

.top-row .site-social-link {
	color: rgba(247, 251, 255, 0.92) !important;
	background: rgba(255, 255, 255, 0.1) !important;
}

.top-row .site-social-link:hover,
.top-row .site-social-link:focus {
	color: var(--brand-primary-dark) !important;
	background: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.social3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.social3 li {
	float: none !important;
	margin: 0 !important;
}

.social3 .site-social-link {
	color: var(--brand-primary-dark) !important;
	background: #fff !important;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.social3 .site-social-link:hover,
.social3 .site-social-link:focus {
	color: #fff !important;
	background: var(--brand-primary) !important;
	transform: translateY(-2px);
}

.float-socials {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
	margin: 0;
}

.float-socials li {
	margin-top: 0 !important;
}

.float-socials .site-social-link {
	width: 50px;
	height: 50px;
	color: #fff !important;
	background: var(--brand-primary) !important;
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(18, 60, 102, 0.2);
}

.float-socials .site-social-icon {
	width: 22px;
	height: 22px;
}

.float-socials .site-social-link:hover,
.float-socials .site-social-link:focus {
	background: var(--brand-primary-dark) !important;
	transform: translateY(-2px);
}

/* Inner page banner image */
.sub-page-banner {
	position: relative;
	isolation: isolate;
	min-height: 300px;
	background-color: var(--brand-primary-light) !important;
	background-image:
		linear-gradient(90deg, rgba(247, 251, 255, 0.94) 0%, rgba(247, 251, 255, 0.84) 42%, rgba(247, 251, 255, 0.18) 100%),
		url("/images/inner-page-banner-ayseoner-minimal.png") !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center right !important;
	overflow: hidden;
}

.sub-page-banner .entry-title {
	color: var(--brand-primary-dark) !important;
	text-align: left !important;
	text-shadow: none;
	margin-left: 0 !important;
	margin-right: auto !important;
	max-width: 980px;
}

@media (max-width: 767px) {
	.sub-page-banner {
		min-height: 230px;
		background-position: center right 22% !important;
	}
}

/* Main navigation casing */
.navbar-default .navbar-nav > li > a {
	text-transform: uppercase !important;
}

/* Topbar alignment */
.top-row .navbar-nav {
	align-items: stretch;
	justify-content: flex-end;
	min-height: 68px;
}

.top-row .navbar-nav > li {
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 10px !important;
	min-height: 68px;
}

.top-row .navbar-nav > li > a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 10px !important;
	min-height: 44px;
	line-height: 1 !important;
}

.top-row .navbar-nav > li > a > i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	line-height: 1;
}

.top-row .site-social-link,
.top-row .locale-link a {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0 !important;
}

@media (max-width: 767px) {
	.top-row {
		padding: 8px 0 !important;
	}

	.top-row .container-fluid {
		padding-right: 12px;
		padding-left: 12px;
	}

	.top-row .navbar-nav {
		display: grid !important;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 8px;
		float: none !important;
		width: 100%;
		min-height: 0;
		margin: 0;
		text-align: center;
	}

	.top-row .navbar-nav > li {
		display: flex !important;
		min-height: 0;
		padding: 0 !important;
		border: 0 !important;
	}

	.top-row .navbar-nav > li:nth-child(1),
	.top-row .navbar-nav > li:nth-child(2) {
		grid-column: 1 / -1;
	}

	.top-row .navbar-nav > li > a {
		width: 100%;
		min-height: 40px;
		padding: 0 12px !important;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.08);
		font-size: 14px;
	}

	.top-row .navbar-nav > li:nth-child(2) > a {
		font-size: 13px;
	}

	.top-row .site-social-link,
	.top-row .locale-link a {
		width: 100%;
		height: 40px;
		min-width: 0;
		min-height: 40px;
	}
}

/* FAQ full-height answers */
.faq-home-answer,
.faq-home-answer-inner,
.faq-section .panel-body {
	max-height: none !important;
	height: auto !important;
	overflow: visible !important;
}

/* Keep Bootstrap collapse responsive while still allowing full FAQ content */
.faq-section .panel-collapse.collapse:not(.in) {
	display: none !important;
	height: 0 !important;
	overflow: hidden !important;
}

.faq-section .panel-collapse.collapse.in {
	display: block !important;
	height: auto !important;
	overflow: visible !important;
}

.faq-section .panel-collapse.collapsing {
	overflow: hidden !important;
	transition: height .18s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

/* Footer powered by */
.copyright .powered-by {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin: 14px 0 0;
	clear: both;
}

.copyright .powered-by a {
	display: inline-flex;
	align-items: center;
}

.copyright .powered-by img {
	display: block;
	width: 86px;
	height: auto;
	max-height: 18px;
	object-fit: contain;
}

/* Treatment detail sidebar */
.treatment-procedures h3,
#sub-page-content .treatment-procedures h3 {
	color: #fff !important;
	background: var(--brand-primary-dark) !important;
}

/* Treatments page filter */
.treatments-page-container {
	padding-top: 56px;
}

.treatments-filter-select-wrap {
	display: none;
	margin-bottom: 14px;
}

.treatments-filter-select {
	width: 100%;
	height: 54px;
	padding: 0 46px 0 18px;
	border: 1px solid rgba(18, 60, 102, 0.14);
	border-radius: 14px;
	background:
		linear-gradient(45deg, transparent 50%, var(--brand-primary-dark) 50%),
		linear-gradient(135deg, var(--brand-primary-dark) 50%, transparent 50%),
		#fff;
	background-position:
		calc(100% - 24px) 23px,
		calc(100% - 18px) 23px,
		0 0;
	background-size:
		6px 6px,
		6px 6px,
		100% 100%;
	background-repeat: no-repeat;
	color: var(--brand-primary-dark);
	font-size: 15px;
	font-weight: 750;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: 0 14px 32px rgba(18, 60, 102, 0.07);
}

.treatments-filter-select:focus {
	border-color: rgba(35, 131, 216, 0.35);
	outline: none;
	box-shadow: 0 0 0 4px rgba(35, 131, 216, 0.12);
}

.treatments-tabs {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	justify-content: stretch !important;
	gap: 10px;
	width: 100%;
	margin: 0 auto 44px !important;
	padding: 8px !important;
	overflow: visible;
	background: #fff !important;
	border: 1px solid rgba(18, 60, 102, 0.12) !important;
	border-radius: 18px !important;
	box-shadow: 0 18px 44px rgba(18, 60, 102, 0.07) !important;
}

.treatments-tab {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 0 14px !important;
	border: 1px solid transparent !important;
	border-radius: 12px !important;
	background: transparent !important;
	color: var(--brand-primary-dark) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center;
	box-shadow: none !important;
	transition:
		background-color .28s cubic-bezier(0.32, 0.72, 0, 1),
		border-color .28s cubic-bezier(0.32, 0.72, 0, 1),
		color .28s cubic-bezier(0.32, 0.72, 0, 1),
		transform .28s cubic-bezier(0.32, 0.72, 0, 1),
		box-shadow .28s cubic-bezier(0.32, 0.72, 0, 1);
}

.treatments-tab img {
	width: 24px !important;
	height: 24px !important;
	margin-right: 8px;
	object-fit: contain;
	border-radius: 7px;
}

.treatments-tab:hover,
.treatments-tab:focus {
	background: var(--brand-primary-light) !important;
	border-color: rgba(35, 131, 216, 0.18) !important;
	color: var(--brand-primary-dark) !important;
	transform: translateY(-1px);
	outline: none;
}

.treatments-tab.is-active,
.treatments-tab[aria-selected="true"] {
	background: var(--brand-primary-dark) !important;
	border-color: var(--brand-primary-dark) !important;
	color: #fff !important;
	box-shadow: 0 14px 30px rgba(18, 60, 102, 0.18) !important;
}

.treatments-tab.is-active span,
.treatments-tab[aria-selected="true"] span {
	color: #fff !important;
}

.treatments-tab-panel.is-active {
	animation: treatmentsFadeIn .36s cubic-bezier(0.32, 0.72, 0, 1);
}

@media (max-width: 991px) {
	.treatments-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 34px !important;
	}
}

@media (max-width: 767px) {
	.treatments-page-container {
		padding-top: 36px;
	}

	.treatments-filter-select-wrap {
		display: block;
	}

	.treatments-tabs {
		display: none !important;
	}

	.treatments-tab {
		min-height: 44px;
		padding: 0 10px !important;
		font-size: 12px !important;
		border-radius: 11px !important;
	}

	.treatments-tab img {
		display: none;
	}
}

/* Treatment detail FAQ */
.treatment-detail-faq {
	margin: 44px 0 10px;
	padding: 0;
}

.treatment-detail-faq h2 {
	margin: 0 0 18px !important;
	font-size: clamp(28px, 3vw, 38px) !important;
	line-height: 1.12 !important;
	font-weight: 800 !important;
	color: var(--brand-primary-dark) !important;
	text-transform: none !important;
}

.treatment-detail-faq h2 span {
	font-weight: inherit !important;
}

.treatment-detail-faq .panel-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
}

.treatment-detail-faq .panel {
	margin: 0 !important;
	overflow: hidden;
	background: #fff !important;
	border: 1px solid rgba(18, 60, 102, 0.12) !important;
	border-radius: 16px !important;
	box-shadow: 0 16px 38px rgba(18, 60, 102, 0.06) !important;
	transition:
		border-color .28s cubic-bezier(0.32, 0.72, 0, 1),
		box-shadow .28s cubic-bezier(0.32, 0.72, 0, 1),
		transform .28s cubic-bezier(0.32, 0.72, 0, 1);
}

.treatment-detail-faq .panel:hover {
	border-color: rgba(35, 131, 216, 0.26) !important;
	box-shadow: 0 18px 44px rgba(18, 60, 102, 0.1) !important;
	transform: translateY(-1px);
}

.treatment-detail-faq .panel-heading {
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
}

.treatment-detail-faq .panel-title {
	margin: 0 !important;
}

.treatment-detail-faq .panel-title a {
	display: flex !important;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 22px 24px !important;
	color: var(--brand-primary-dark) !important;
	font-size: 20px !important;
	font-weight: 750 !important;
	line-height: 1.35 !important;
	text-transform: initial;
	text-decoration: none !important;
}

.treatment-detail-faq .panel-title a:hover,
.treatment-detail-faq .panel-title a:focus,
.treatment-detail-faq .panel-title a[aria-expanded="true"] {
	color: var(--brand-primary-dark) !important;
}

.treatment-detail-faq .panel-title a span {
	order: 2;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px;
	margin-left: auto;
	border-radius: 50% !important;
	background: var(--brand-primary-light) !important;
	color: var(--brand-primary) !important;
	box-shadow: none !important;
	transition:
		background-color .28s cubic-bezier(0.32, 0.72, 0, 1),
		color .28s cubic-bezier(0.32, 0.72, 0, 1),
		transform .28s cubic-bezier(0.32, 0.72, 0, 1);
}

.treatment-detail-faq .panel-title a[aria-expanded="true"] span {
	background: var(--brand-primary-dark) !important;
	color: #fff !important;
	transform: rotate(45deg);
}

.treatment-detail-faq .panel-title a span i {
	display: block;
	font-size: 14px;
	line-height: 1;
}

.treatment-detail-faq .panel-collapse {
	border: 0 !important;
}

.treatment-detail-faq .panel-body {
	padding: 0 24px 24px !important;
	border-top: 0 !important;
	color: #40566B !important;
	font-size: 17px !important;
	line-height: 1.7 !important;
}

.treatment-detail-faq .panel-body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.treatment-detail-faq {
		margin-top: 34px;
	}

	.treatment-detail-faq .panel-title a {
		padding: 18px 18px !important;
		font-size: 17px !important;
		gap: 12px;
	}

	.treatment-detail-faq .panel-title a span {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px;
	}

	.treatment-detail-faq .panel-body {
		padding: 0 18px 20px !important;
		font-size: 15px !important;
	}
}

/* Contact page light surface */
.contact-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 58px !important;
	background: #fff !important;
	background-image: none !important;
}

.contact-hero:before {
	display: none !important;
}

.contact-hero > .container > .row {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

.contact-hero-info h1 {
	color: var(--brand-primary-dark) !important;
	font-size: clamp(40px, 5vw, 58px) !important;
	line-height: 1.05 !important;
	font-weight: 800 !important;
	margin: 0 0 18px !important;
}

.contact-hero-info > p {
	max-width: 620px;
	color: #5A7188 !important;
	font-size: 18px !important;
	line-height: 1.65 !important;
	margin: 0 0 28px !important;
}

.contact-info-cards {
	gap: 14px;
}

.contact-info-card {
	min-height: 92px;
	height: auto !important;
	margin-top: 0 !important;
	padding: 18px 20px !important;
	background: #fff !important;
	border: 1px solid rgba(18, 60, 102, 0.12) !important;
	border-radius: 16px !important;
	color: var(--brand-primary-dark) !important;
	box-shadow: 0 16px 38px rgba(18, 60, 102, 0.07) !important;
	transition:
		border-color .28s cubic-bezier(0.32, 0.72, 0, 1),
		box-shadow .28s cubic-bezier(0.32, 0.72, 0, 1),
		transform .28s cubic-bezier(0.32, 0.72, 0, 1);
}

a.contact-info-card:hover,
a.contact-info-card:focus {
	border-color: rgba(35, 131, 216, 0.24) !important;
	color: var(--brand-primary-dark) !important;
	box-shadow: 0 18px 44px rgba(18, 60, 102, 0.11) !important;
	transform: translateY(-2px);
}

.contact-info-icon {
	width: 56px !important;
	height: 56px !important;
	border-radius: 16px !important;
	background: var(--brand-primary-light) !important;
	color: var(--brand-primary) !important;
	font-size: 20px !important;
}

.contact-info-label {
	color: #6E8EAC !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.contact-info-value {
	color: var(--brand-primary-dark) !important;
	font-size: 18px !important;
	font-weight: 750 !important;
	line-height: 1.35 !important;
}

.contact-socials {
	gap: 12px;
	margin-top: 24px !important;
	padding-top: 0 !important;
}

.contact-socials .site-social-link {
	width: 52px !important;
	height: 52px !important;
	border: 1px solid rgba(18, 60, 102, 0.12) !important;
	border-radius: 16px !important;
	background: #fff !important;
	color: var(--brand-primary-dark) !important;
	box-shadow: 0 14px 32px rgba(18, 60, 102, 0.08);
}

.contact-socials .site-social-link:hover,
.contact-socials .site-social-link:focus {
	background: var(--brand-primary) !important;
	border-color: var(--brand-primary) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

.contact-socials .site-social-icon {
	width: 21px;
	height: 21px;
}

.contact-form-card {
	background: #fff !important;
	border: 1px solid rgba(18, 60, 102, 0.12) !important;
	position: relative;
	z-index: 1;
}

@media (max-width: 991px) {
	.contact-hero > .container > .row {
		display: block;
	}

	.contact-hero .col-md-5,
	.contact-hero .col-md-7 {
		width: 100%;
		float: none;
	}

	.contact-hero-info {
		padding-right: 15px;
		margin-bottom: 32px;
	}

	.contact-form-card .row {
		display: block;
		margin-left: 0;
		margin-right: 0;
	}

	.contact-form-card .row > [class*="col-"] {
		display: block;
		width: 100%;
		float: none;
		clear: both;
		min-height: 0;
		padding-left: 0;
		padding-right: 0;
	}

	#form-contact input[type="text"],
	#form-contact input[type="email"],
	#form-contact input[type="tel"],
	#form-contact textarea,
	#form-contact .iti {
		display: block;
		width: 100% !important;
	}

	#form-contact .iti {
		height: 48px;
		margin-bottom: 14px !important;
	}

	#form-contact .iti input[type="tel"] {
		margin-bottom: 0 !important;
	}
}

/* Inner page contact form */
.bottom-content-form {
	padding: 64px 0 !important;
	background: var(--brand-white) !important;
	background-image: none !important;
}

.content-form-holder {
	padding: 34px;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.12);
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(18, 60, 102, 0.08);
}

.content-form-header {
	display: grid;
	grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
	gap: 28px;
	align-items: end;
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(18, 60, 102, 0.1);
}

.content-form-header h2 {
	margin: 0 !important;
	color: var(--brand-primary-dark) !important;
	font-size: clamp(30px, 3vw, 42px) !important;
	line-height: 1.08 !important;
	font-weight: 800 !important;
	text-transform: none !important;
}

.content-form-header p {
	max-width: 720px;
	margin: 0 !important;
	color: #5A7188 !important;
	font-size: 16px;
	line-height: 1.65;
}

.content-form-holder .inline-form .row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 14px !important;
}

.content-form-holder .inline-form .row:last-of-type {
	grid-template-columns: minmax(0, 1fr) 190px;
	margin-bottom: 0 !important;
}

.content-form-holder .inline-form .row > [class*="col-"] {
	width: auto !important;
	float: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.content-form-holder .inline-form .row > [style*="display: none"] {
	display: none !important;
}

.content-form-holder .inline-form input {
	width: 100%;
	height: 54px;
	margin: 0 !important;
	padding: 0 16px !important;
	background: #fff !important;
	border: 1px solid rgba(18, 60, 102, 0.13) !important;
	border-radius: 14px !important;
	color: var(--brand-primary-dark) !important;
	font-size: 15px;
	font-weight: 650;
	box-shadow: none !important;
	transition:
		border-color .24s cubic-bezier(0.32, 0.72, 0, 1),
		box-shadow .24s cubic-bezier(0.32, 0.72, 0, 1);
}

.content-form-holder .inline-form input.form-phone {
	padding-left: 56px !important;
}

.content-form-holder .inline-form input::placeholder {
	color: #6E8EAC !important;
	opacity: 1;
}

.content-form-holder .inline-form input:focus {
	border-color: rgba(35, 131, 216, 0.38) !important;
	box-shadow: 0 0 0 4px rgba(35, 131, 216, 0.12) !important;
	outline: none;
}

.content-form-holder .inline-form input:focus::placeholder {
	color: transparent !important;
}

.content-form-holder .inline-form .iti,
.content-form-holder .inline-form .iti--allow-dropdown {
	width: 100%;
	margin: 0 !important;
}

.content-form-holder .inline-form button,
.content-form-holder .inline-form-submit {
	width: 100%;
	height: 54px;
	margin: 0 !important;
	border-radius: 14px !important;
	background: var(--brand-primary) !important;
	color: #fff !important;
	box-shadow: 0 14px 30px rgba(18, 60, 102, 0.14) !important;
}

.content-form-holder .inline-form button:hover,
.content-form-holder .inline-form button:focus,
.content-form-holder .inline-form-submit:hover,
.content-form-holder .inline-form-submit:focus {
	background: var(--brand-primary-dark) !important;
	transform: translateY(-2px);
}

.content-form-holder #success {
	margin: 16px 0 0;
}

@media (max-width: 991px) {
	.content-form-header,
	.content-form-holder .inline-form .row,
	.content-form-holder .inline-form .row:last-of-type {
		grid-template-columns: 1fr;
	}

	.content-form-holder {
		padding: 24px;
	}
}

@media (max-width: 767px) {
	.bottom-content-form {
		padding: 44px 0 !important;
	}
}

/* Inner page contact form layout reset */
.content-form-holder {
	display: grid;
	grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
	gap: 42px;
	align-items: start;
}

.content-form-header {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	border-bottom: 0 !important;
}

.content-form-header h2 {
	max-width: 9ch;
}

.content-form-header p {
	margin-top: 18px !important;
	font-size: 15px;
	line-height: 1.7;
}

.content-form-holder .inline-form {
	min-width: 0;
	padding-left: 42px;
	border-left: 1px solid rgba(18, 60, 102, 0.1);
}

.content-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.content-form-field {
	min-width: 0;
}

.content-form-field label {
	display: block;
	margin: 0 0 8px;
	color: var(--brand-primary-dark);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.2;
}

.content-form-message {
	grid-column: 1 / -1;
}

.content-form-actions {
	grid-column: 1 / -1;
	display: flex;
	justify-content: flex-end;
}

.content-form-holder .inline-form input {
	height: 56px;
}

.content-form-holder .inline-form-submit {
	width: min(100%, 240px) !important;
}

@media (max-width: 991px) {
	.content-form-holder {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.content-form-header h2 {
		max-width: 100%;
	}

	.content-form-holder .inline-form {
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 767px) {
	.content-form-grid {
		grid-template-columns: 1fr;
	}

	.content-form-actions,
	.content-form-holder .inline-form-submit {
		width: 100% !important;
	}
}

/* Requested card shadow tuning */
.section-news .news-item,
.blog-detail-recent-card {
	box-shadow: 0 16px 16px rgba(18, 60, 102, 0.09) !important;
}

.tm-card,
.testimonials .tm-card {
    box-shadow: 0 16px 16px rgba(255, 255, 255, 0.09) !important;
}

/* About page redesign */
.about-redesign {
	background: #fff;
	color: var(--brand-primary-dark);
}

.about-redesign h1,
.about-redesign h2,
.about-redesign h3,
.about-redesign h4 {
	text-transform: none !important;
}

.about-redesign .container {
	max-width: 1240px;
}

.about-hero-section {
	padding: 72px 0 42px;
}

.about-hero-card {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
	align-items: end;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.12);
	border-radius: 22px;
	box-shadow: 0 22px 54px rgba(18, 60, 102, 0.09);
	overflow: hidden;
}

.about-hero-copy {
	padding: clamp(28px, 3.6vw, 46px);
}

.about-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	color: var(--brand-primary);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.about-kicker:before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--brand-primary);
	border-radius: 999px;
}

.about-hero-copy h2,
.about-text-panel h2,
.about-section-heading h2,
.about-membership-card h2,
.about-documents-header h2 {
	margin: 0;
	color: var(--brand-primary-dark);
	font-size: clamp(36px, 4.4vw, 62px);
	font-weight: 800;
	line-height: .98;
	letter-spacing: 0;
	text-wrap: balance;
}

.about-hero-lead {
	max-width: 760px;
	margin: 18px 0 0;
	color: #2f4052;
	font-size: clamp(19px, 1.9vw, 26px);
	font-weight: 700;
	line-height: 1.3;
	text-wrap: balance;
}

.about-hero-note {
	max-width: 680px;
	margin: 14px 0 0;
	color: #58718d;
	font-size: 16px;
	line-height: 1.6;
}

.about-hero-stats {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 22px 0 0;
	gap: 10px;
}

.about-hero-stats .profile-stat-compact-item {
	min-height: 88px;
	padding: 12px 16px;
	grid-template-columns: 30px minmax(0, 1fr);
	column-gap: 14px;
	align-items: center;
}

.about-hero-stats .profile-stat-compact-item i {
	width: 30px;
	min-width: 30px;
	font-size: 22px;
	line-height: 1;
	text-align: center;
}

.about-hero-stats .profile-stat-compact-item strong {
	font-size: clamp(28px, 2.6vw, 38px);
}

.about-hero-stats .profile-stat-compact-item span {
	font-size: 13px;
	line-height: 1.22;
}

.about-hero-media {
	display: flex;
	align-self: stretch;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 26px 0 0;
	background: #fff;
}

.about-hero-media img {
	width: min(100%, 410px);
	height: auto;
	max-height: 430px;
	object-fit: contain;
	object-position: bottom right;
	filter: none;
	box-shadow: none;
}

.about-profile-section,
.about-career-section,
.about-membership-section,
.about-documents-section {
	padding: 42px 0;
}

.about-profile-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
}

.about-text-panel,
.about-focus-panel,
.about-membership-card,
.about-certificate-group,
.about-cv-card {
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.12);
	border-radius: 20px;
	box-shadow: 0 16px 16px rgba(18, 60, 102, 0.06);
}

.about-text-panel {
	padding: clamp(28px, 4vw, 48px);
}

.about-text-panel p {
	max-width: 76ch;
	margin: 20px 0 0;
	color: #374a5f;
	font-size: 17px;
	line-height: 1.82;
}

.about-focus-panel {
	position: sticky;
	top: 110px;
	padding: 30px;
	background: var(--brand-primary-dark);
	color: #fff;
}

.about-focus-panel h3 {
	margin: 0 0 20px;
	color: #fff !important;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.12;
}

.about-focus-list {
	display: grid;
	gap: 10px;
}

.about-focus-list span {
	display: block;
	padding: 12px 14px;
	border: 1px solid rgba(247, 251, 255, 0.16);
	border-radius: 12px;
	background: rgba(247, 251, 255, 0.08);
	color: rgba(247, 251, 255, 0.9);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.about-section-heading {
	max-width: 840px;
	margin-bottom: 28px;
}

.about-section-heading h2,
.about-membership-card h2,
.about-documents-header h2 {
	font-size: clamp(34px, 4vw, 54px);
}

.about-timeline {
	display: grid;
	gap: 14px;
}

.about-timeline-item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 24px 26px;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.11);
	border-radius: 18px;
	box-shadow: 0 12px 24px rgba(18, 60, 102, 0.05);
}

.about-timeline-item span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--brand-primary-light);
	color: var(--brand-primary);
	font-size: 16px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.about-timeline-item p {
	margin: 0;
	color: #34475b;
	font-size: 17px;
	line-height: 1.72;
}

.about-membership-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding: clamp(30px, 4vw, 48px);
	background: var(--brand-primary-dark);
}

.about-membership-card h2,
.about-membership-card .about-kicker,
.about-membership-card p {
	color: #fff !important;
}

.about-membership-card .about-kicker:before {
	background: rgba(247, 251, 255, 0.62);
}

.about-membership-card p {
	margin: 0;
	color: rgba(247, 251, 255, 0.86);
	font-size: 18px;
	line-height: 1.76;
}

.about-documents-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 34px;
	align-items: end;
	margin-bottom: 24px;
}

.about-documents-header p,
.about-documents-summary-text {
	margin: 0;
	color: #58718d;
	font-size: 17px;
	line-height: 1.72;
}

.about-cv-card {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 24px;
	padding: 18px 22px;
	color: var(--brand-primary-dark);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.about-cv-card:hover,
.about-cv-card:focus {
	border-color: rgba(35, 131, 216, 0.34);
	box-shadow: 0 18px 28px rgba(18, 60, 102, 0.1);
	transform: translateY(-2px);
}

.about-cv-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: var(--brand-primary);
	color: #fff;
	font-size: 24px;
}

.about-cv-card strong,
.about-cv-card em {
	display: block;
}

.about-cv-card strong {
	color: var(--brand-primary-dark);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
}

.about-cv-card em {
	margin-top: 4px;
	color: var(--brand-primary);
	font-size: 13px;
	font-style: normal;
	font-weight: 800;
	text-transform: uppercase;
}

.about-certificate-groups {
	display: grid;
	gap: 18px;
	margin-top: 26px;
}

.about-certificate-group {
	padding: 0;
	overflow: hidden;
}

.about-certificate-group summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 26px;
	cursor: pointer;
	list-style: none;
	color: var(--brand-primary-dark);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
}

.about-certificate-group summary::-webkit-details-marker {
	display: none;
}

.about-certificate-group summary small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 32px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--brand-primary-light);
	color: var(--brand-primary);
	font-size: 14px;
	font-weight: 800;
}

.about-certificate-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	padding: 0 26px 26px;
}

.about-certificate-card {
	min-height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.12);
	border-radius: 16px;
	box-shadow: 0 14px 18px rgba(18, 60, 102, 0.07);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.about-certificate-card:hover,
.about-certificate-card:focus-within {
	border-color: rgba(35, 131, 216, 0.32);
	box-shadow: 0 18px 28px rgba(18, 60, 102, 0.11);
	transform: translateY(-3px);
}

.about-certificate-card > a {
	display: flex;
	height: 100%;
	flex-direction: column;
	background: #f7fbff;
	color: var(--brand-primary-dark);
	text-decoration: none !important;
}

.about-certificate-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	padding: 14px;
	background: #fff;
	transition: transform .28s ease;
}

.about-certificate-card:hover img {
	transform: scale(1.025);
}

.about-certificate-card > a span {
	display: block;
	flex: 1;
	margin: 0;
	padding: 16px;
	border-top: 1px solid rgba(18, 60, 102, 0.08);
	background: #fff;
	color: var(--brand-primary-dark);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.32;
	text-wrap: pretty;
}

.about-resource-library {
	margin: 34px 0 30px;
	padding: 28px;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.1);
	border-radius: 18px;
	box-shadow: 0 16px 36px rgba(18, 60, 102, 0.07);
}

.about-resource-heading {
	display: grid;
	grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
	gap: 22px;
	align-items: end;
	margin-bottom: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(18, 60, 102, 0.1);
}

.about-resource-heading h3 {
	margin: 6px 0 0;
	color: var(--brand-primary-dark);
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

.about-resource-heading p {
	margin: 0;
	color: #4e6072;
	font-size: 17px;
	line-height: 1.75;
}

.about-resource-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.about-resource-card {
	display: flex;
	min-height: 190px;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	background: #f7fbff;
	border: 1px solid rgba(18, 60, 102, 0.12);
	border-radius: 14px;
	color: var(--brand-primary-dark);
	text-decoration: none !important;
	transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.about-resource-card:hover,
.about-resource-card:focus {
	border-color: rgba(35, 131, 216, 0.34);
	box-shadow: 0 16px 30px rgba(18, 60, 102, 0.09);
	transform: translateY(-2px);
}

.about-resource-count {
	align-self: flex-start;
	padding: 6px 10px;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.1);
	border-radius: 999px;
	color: var(--brand-primary);
	font-size: 13px;
	font-weight: 800;
}

.about-resource-card strong {
	display: block;
	margin-top: 18px;
	color: var(--brand-primary-dark);
	font-size: 20px;
	line-height: 1.25;
}

.about-resource-card em {
	display: block;
	margin-top: 10px;
	color: #536b84;
	font-size: 15px;
	font-style: normal;
	line-height: 1.55;
}

.about-resource-action {
	margin-top: 18px;
	color: var(--brand-primary);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.resource-page-section {
	padding: 70px 0 80px;
	background: #fff;
}

.resource-page-header {
	max-width: 960px;
	margin-bottom: 28px;
}

.resource-page-header a {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--brand-primary);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
	text-transform: uppercase;
}

.resource-page-header h2 {
	margin: 0;
	color: var(--brand-primary-dark);
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

.resource-page-header p {
	max-width: 760px;
	margin: 16px 0 0;
	color: #4e6072;
	font-size: 18px;
	line-height: 1.75;
}

.resource-page-header span {
	display: inline-flex;
	margin-top: 18px;
	padding: 7px 12px;
	background: var(--brand-primary-light);
	border-radius: 999px;
	color: var(--brand-primary-dark);
	font-size: 13px;
	font-weight: 800;
}

.resource-document-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.resource-document-card {
	display: flex;
	min-height: 220px;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	background: #fff;
	border: 1px solid rgba(18, 60, 102, 0.12);
	border-radius: 16px;
	box-shadow: 0 16px 16px rgba(18, 60, 102, 0.09);
}

.resource-document-card span {
	display: inline-flex;
	margin-bottom: 16px;
	padding: 6px 10px;
	background: var(--brand-primary-light);
	border-radius: 999px;
	color: var(--brand-primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .04em;
}

.resource-document-card h3 {
	margin: 0;
	color: var(--brand-primary-dark);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: none;
}

.resource-document-actions {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.resource-document-actions a {
	flex: 1;
	padding: 12px 14px;
	background: var(--brand-primary);
	border-radius: 10px;
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background .22s ease, transform .22s ease;
}

.resource-document-actions a:last-child {
	background: var(--brand-primary-light);
	color: var(--brand-primary-dark) !important;
}

.resource-document-actions a:hover,
.resource-document-actions a:focus {
	background: var(--brand-primary-dark);
	color: #fff !important;
	transform: translateY(-1px);
}

@media (max-width: 1199px) {
	.about-certificate-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.about-hero-card,
	.about-profile-grid,
	.about-membership-card,
	.about-documents-header,
	.about-resource-heading {
		grid-template-columns: 1fr;
	}

	.about-focus-panel {
		position: static;
	}

	.about-hero-media {
		justify-content: center;
		padding-top: 0;
	}

	.about-hero-media img {
		max-height: 460px;
	}

	.about-certificate-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-resource-grid,
	.resource-document-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.about-hero-section {
		padding: 44px 0 28px;
	}

	.about-profile-section,
	.about-career-section,
	.about-membership-section,
	.about-documents-section {
		padding: 28px 0;
	}

	.about-hero-copy,
	.about-text-panel,
	.about-membership-card {
		padding: 26px 20px;
	}

	.about-timeline-item {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.about-certificate-grid {
		grid-template-columns: 1fr;
		padding: 0 16px 18px;
	}

	.about-certificate-group summary {
		padding: 18px 16px;
		font-size: 17px;
	}

	.about-resource-library {
		padding: 20px;
	}

	.about-resource-grid,
	.resource-document-grid {
		grid-template-columns: 1fr;
	}

	.resource-document-actions {
		flex-direction: column;
	}
}

.mobile-nav-tools {
	display: none !important;
}

.main-banner .hero-slide {
	position: relative;
	min-height: clamp(360px, 30.5vw, 640px);
	overflow: hidden;
	width: 100%;
	height: clamp(360px, 30.5vw, 640px);
	background-color: #EAF5FF;
	background-image: var(--hero-bg-desktop);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: clamp(22px, 2.4vw, 42px) clamp(28px, 5vw, 80px) 0;
	color: var(--brand-primary-dark);
	pointer-events: none;
}

.main-banner .hero-slide-logo {
	display: block;
	width: clamp(94px, 8.1vw, 150px) !important;
	height: clamp(48px, 4.3vw, 80px) !important;
	margin: 0 0 clamp(34px, 5vw, 86px);
	background-image: url('/images/ayse_oner_logo.avif');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.hero-slide-title {
	max-width: min(66vw, 1120px);
	margin: 0;
	color: var(--brand-primary);
	font-size: clamp(26px, 3.15vw, 38px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	text-transform: capitalize;
}

.hero-slide-text {
	max-width: min(58vw, 920px);
	margin-top: clamp(4px, .7vw, 12px);
	color: var(--brand-primary);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 400;
	line-height: 1;
}

.hero-slide-text p {
	margin: 0;
}

.hero-slide-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: clamp(180px, 16vw, 360px);
	margin-top: clamp(24px, 3vw, 48px);
	padding: clamp(10px, .8vw, 14px) clamp(28px, 3vw, 52px);
	border-radius: 14px;
	background: var(--brand-primary);
	box-shadow: 0 16px 24px rgba(18, 60, 102, 0.18);
	color: #fff !important;
	font-size: clamp(16px, 1.45vw, 24px);
	font-weight: 600;
	line-height: 1;
	text-decoration: none !important;
	transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
	pointer-events: auto;
}

.hero-slide-button:hover,
.hero-slide-button:focus {
	background: var(--brand-primary-dark);
	box-shadow: 0 18px 28px rgba(18, 60, 102, 0.22);
	color: #fff !important;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.navbar-brand.site-logo {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
		height: auto !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.navbar-brand.site-logo img {
		width: 88px !important;
		height: 60px !important;
	}

	.navbar-toggle {
		margin-top: 16px !important;
	}

	.top-row {
		padding: 6px 0 !important;
	}

	.top-row .navbar-nav {
		display: grid !important;
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 8px;
	}

	.top-row .navbar-nav > li {
		display: none !important;
	}

	.top-row .navbar-nav > li:nth-child(1),
	.top-row .navbar-nav > li:nth-child(2) {
		display: flex !important;
		grid-column: auto;
	}

	.top-row .navbar-nav > li > a {
		min-height: 38px;
		padding: 0 8px !important;
		font-size: 12px;
		white-space: nowrap;
	}

	.top-row .navbar-nav > li:nth-child(2) > a {
		font-size: 11px;
	}

	.mobile-nav-tools {
		display: block !important;
		padding: 14px 16px 16px !important;
		border-top: 1px solid rgba(18, 60, 102, 0.1);
	}

	.mobile-nav-socials,
	.mobile-nav-locales {
		display: flex;
		gap: 10px;
		justify-content: flex-start;
	}

	.mobile-nav-socials {
		margin-top: 10px;
	}

	.mobile-nav-tools .site-social-link,
	.mobile-nav-locales a {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border-radius: 12px;
		background: var(--brand-primary-light);
		color: var(--brand-primary-dark) !important;
		font-size: 14px;
		font-weight: 800;
		text-decoration: none !important;
	}

	.main-banner .hero-slide,
	#main-banner .owl-item,
	#main-banner .owl-wrapper-outer {
		min-height: 520px;
		height: 520px;
	}

	.main-banner .hero-slide {
		background-image: var(--hero-bg-mobile);
	}

	.hero-slide-overlay {
		align-items: center;
		justify-content: flex-start;
		text-align: center;
		padding: 34px 22px 0;
	}

	.main-banner .hero-slide-logo {
		width: 106px !important;
		height: 58px !important;
		margin-bottom: 54px;
	}

	.hero-slide-title {
		max-width: 100%;
		font-size: clamp(28px, 8vw, 42px);
		line-height: 1.14;
	}

	.hero-slide-text {
		max-width: 100%;
		margin-top: 8px;
		font-size: clamp(22px, 7vw, 36px);
		line-height: 1.15;
	}

	.hero-slide-button {
		min-width: 0;
		margin-top: 28px;
		padding: 11px 22px;
		font-size: 16px;
	}
}
