/*
Theme Name: Dentistry
Author: prothemes
Author URI: https://www.templatemonster.com/authors/prothemes/
Description: Dentistry WordPress Theme. After activation, please go to and install Plugin
Version: 2.0
*/

/* Root Variables */
:root {
	--color-primary: #30f0b6;
	--color-secondary: #674df3;
	--color-text: #676c70;
	--color-background: #ffffff;

	/* Topbar */
	--topbar-bg-color: #674DF3;
	--topbar-text-color: #ffffff;
	--topbar-hover-color: #ffffff;

	/* Footer */
	--footer-bg-color: #1b1f2e;
	--footer-text-color: #ffffff;
	--footer-hover-color: #ffffff;

	/* Blog */
	--blog-title-color: #1b1f2e;
	--blog-text-color: #676c70;
	--blog-bg-color: #ffffff;

	/* Buttons */
	--btn-bg-color: #474fa3;
	--btn-hover-bg-color: #292d48;
	--btn-text-color: #ffffff;

	/* Typography */
	--font-body: 'DM Sans', sans-serif;
	--font-heading: 'DM Sans', sans-serif;
	--font-menu: 'DM Sans', sans-serif;
	--font-weight: 400;
	--font-size: 16px;
	
	--sidebar-bg-color: #f4f2ff;
	--header-bg-color: #1b1f2e;
	
	--h1-size: 3.2rem;
	--h2-size: 2.8rem;
	--h3-size: 2.4rem; 
	--h4-size: 2rem; 
	--h5-size: 1.6rem;
	--h6-size: 1.4rem;

	--nav-font-size: 16px;
	--nav-font-weight: 500;
	--nav-text-transform: capitalize;
}
.elementor-widget-heading .elementor-heading-title {
	font-family: var(--font-heading) !important;
}
body {
	font-family: var(--font-body);
	margin: 0;
	padding: 0;
	background-color: var(--color-background);
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	font-family: var(--font-heading);
	color: var(--blog-title-color);
	margin: 10px 0;
}
h1 { 
	font-size: var(--h1-size); 
}
h2 { 
	font-size: var(--h2-size); 
}
h3 { 
	font-size: var(--h3-size); 
}
h4 { 
	font-size: var(--h4-size); 
}
h5 { 
	font-size: var(--h5-size); 
}
h6 { 
	font-size: var(--h6-size); 
}

.single-post .entry-content li,
.single-post body,
p {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1.1rem;
	letter-spacing: normal;
	line-height: 1.6;
	color: var(--color-text);
}
a {
	text-decoration: none;
}


/* Footer styling */

#site-footer {
	background-color: var(--footer-bg-color);
	color: var(--footer-text-color);
	padding: 100px 0 20px 0;
	text-align: center;
}
#site-footer p {
	 color: var(--footer-text-color);
}
.footer-bottom .footer-text {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 40px;
}

#site-footer a {
	color: var(--footer-text-color);
	text-decoration: none;
}

#site-footer a:hover {
	color: var(--footer-hover-color);
}

#scroll-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--color-secondary);
	color: var(--color-primary);
	border: none;
	padding: 15px 18px;
	cursor: pointer;
	border-radius: 5px;
	display: none;
}

#scroll-to-top.visible {
	display: block;
}

#scroll-to-top:hover {
	color: var(--blog-title-color);
	background: var(--color-primary);
}

a,
a:hover {
	transition: all 0.3s ease;
}

.footer-top {
	text-align: center;
	padding: 35px 0 0 0;
}
@media (max-width: 767px) {
#sp-top-bar .social-icons {
	margin-bottom : 10px;
}
}
#sp-top-bar .contact-info a:not(:last-child) {
	margin-right: 10px;
}

#sp-top-bar .contact-info a,
#sp-top-bar .social-icons a {
	color: var(--topbar-text-color);
	transition: all 0.3s ease;
	font-size: 16px;
}
#sp-top-bar .contact-info a:hover,
#sp-top-bar .social-icons a:hover {
	color: var(--topbar-hover-color);
	transition: all 0.3s ease;
}
.social-icons a:not(:last-child) {
	margin-right: 10px;
}
#sp-top-bar {
	padding: 5px 0 5px 0;
	background-color: var(--topbar-bg-color) !important;
}
.topbar-socials i {
	font-size: 15px;
}	
.topbar-socials a {
	margin-right: 20px;
}
.footer-bottom {
	text-align: center;
	padding: 60px 0 0 0;
}
.topbar-contact a {
	font-size: 90%;
	white-space: nowrap;
	text-decoration: none;
}
/* Space between phone and email */
.topbar-contact a + a {
	margin-left: 20px; /* Adjust space as needed */
}

.topbar-contact i {
	font-size: 90%;
	margin-right: 5px;
}

/*blog home*/

/* Blog Grid Layout */

.blog-layout-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
	gap: 30px;
	padding: 0;
	box-sizing: border-box;
	max-width: 100%;
	margin: 0 auto; 
}

.blog-layout-grid article:hover {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-layout-grid article {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	overflow: hidden;
}

/* Post Thumbnail Styling */
.blog-layout-grid .post-thumbnail {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-bottom: 0;
	position: relative;
}

.blog-layout-grid .post-thumbnail img {
	width: 100%;
	height: 385px;
	object-fit: cover; 
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

/* Aliniere titlu */
.blog-layout-grid .post-title {
	text-align: left;
	font-size: 1.4rem;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0;
}
.blog-layout-grid h2.post-title a {
	color: var(--blog-title-color);
	text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 992px) { /* Tablet view */
.blog-layout-grid {
	grid-template-columns: repeat(1, 1fr); 
}
}

@media (max-width: 576px) { /* Mobile view */
.blog-layout-grid {
	grid-template-columns: 1fr; /* O singură coloană pe mobil */
}
}

/* Blog List Layout */
.blog-layout-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-right: 2%;
}

.blog-layout-list article {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 5px;
	border: 2px solid #eeeeee;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	padding-bottom: 0;
	border-radius: 10px;
}

.blog-layout-list .post-thumbnail {
	flex: 0 0 400px;
	height: auto;
	margin-right: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-layout-list .post-thumbnail img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
}

.blog-layout-list .post-content {
	flex: 1;
	padding-top: 20px;
}
.blog-layout-list h2 a,
.blog-layout-list h2 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
	color: var(--blog-title-color);
}
/* Responsive Styles for List Layout */
@media (max-width: 768px) {
.blog-layout-list article {
	flex-direction: column;
	align-items: center;
}
}

/* Read More Button */
.read-more {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--btn-bg-color);
	color: var(--btn-text-color);
	text-decoration: none;
	border-radius: 3px;
	transition: background-color 0.3s ease;
}

.read-more:hover {
	background-color: var(--btn-hover-bg-color);
}

/* Metadata styling */
.post-meta {
	font-size: 14px;
	color: var(--color-text);
	margin: 10px 0;
}
.post-meta span {
	margin-right: 10px;
}
.single.single-post .post-meta {
	text-align: center;
}

/* Tags styling */
.post-tags {
	margin-top: 20px;
}
.blog-layout-grid .post-thumbnail,
.blog-layout-list .post-thumbnail {
	position: relative;
}
.blog-layout-grid .post-categories {
	position: absolute;
	top: 20px;
	right: 20px;
}
.blog-layout-list .post-categories {
	position: absolute;
	top: 20px;
	left: 20px;
}
.post-categories.nopost-img {
  display: none !important;

}
.post-categories a {
	color: var(--blog-title-color);
	background: var(--sidebar-bg-color);
	padding: 7px 15px;
	border-radius: 7px;
	transition: all 0.3s ease;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 600;
	font-style: normal;
	text-transform: uppercase;
	text-decoration: none;
}
.post-tags a {
	transition: all 0.3s ease;
	color: var(--blog-title-color);
	font-size: 0.9rem;
	font-weight: 600;
	font-style: normal;
	text-transform: none;
}
.post-categories a:hover,
.post-tags a:hover {
	color: var(--blog-title-color);
	transition: all 0.3s ease;
	background: var(--color-primary);
}
.post-tags .tag {
	background-color: #eee;
	padding: 5px 10px;
	margin-right: 5px;
	display: inline-block;
	border-radius: 3px;
}

/* Comment Section styling */
.comment-body {
	border: 3px solid #fafafa;
	padding: 30px;
	margin-bottom: 25px;
	border-radius: 10px;
}

.comment-author.vcard {
	margin-bottom: 15px;
}
a.comment-edit-link,
a.comment-reply-link {
	text-transform: uppercase;
	font-weight: 600;
	color: var(--blog-title-color);
}
.comment-metadata a,
.comment-author.vcard a {
	color: var(--blog-title-color);
	text-transform: capitalize;
}
.post-comments {
	margin-top: 30px;
}
#commentform .logged-in-as a {
	color: var(--blog-title-color);
}
/* Navigation styling */
.post-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.previous-post, .next-post {
	font-weight: bold;
}

/**/
/* Comment Section styling */
.post-comments {
	margin-top: 30px;
}

/* Navigation styling */
.post-navigation {
	display: flex;
	justify-content: space-between;
	padding: 90px 0;
}
.previous-post, 
.next-post {
	font-weight: bold;
}
/* Navigation Typography */
#primary-menu {
	font-size: var(--nav-font-size);
	font-weight: var(--nav-font-weight);
	text-transform: var(--nav-text-transform);
}

/* Animation for content */
@keyframes fadeInUp {
	0% {
	opacity: 0;
	transform: translateY(20px);
}
	100% {
	opacity: 1;
	transform: translateY(0);
}
}

.animate-content {
	animation: fadeInUp 1s ease-out;
}

/* Single Article Styles */
.main-content-area.col-md-9 {
	padding: 0 2% 0 1%;
}
.main-content-area.col-md-6 {
	padding: 0 2%;
}
.single-post .main-content-area.col-md-6 {
	padding: 0 3%;
}
.single-post .main-content-area {
	padding: 0;
	max-width: 900px;
	margin: 0 auto;
}

.single-post .entry-title {
	font-weight: 700;
}
h1.entry-title {
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--blog-title-color);
}
.single-post .post-thumbnail img {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 20px;
	height: auto;
}
.single-article .post-meta a:hover,
.single-article .post-meta a {
	color: var(--color-primary);
}
.single-post .post-meta {
	font-size: 0.9em;
	color: #666;
	text-align: center;
	margin-bottom: 20px;
}
.single-post .post-tags .tag a {
	color: #ffffff;
}
.single-post .post-tags .tag {
	display: inline-block;
	background-color: var(--color-primary);
	color: #fff;
	padding: 7px 13px;
	margin: 5px 5px 0 0;
	border-radius: 3px;
	font-size: 13px;
	text-decoration: none;
}
.entry-content a {
	color: var(--color-primary);
}
.single-article .comments-section {
	margin-top: 40px;
}

.single-article .post-tags {
	margin-top: 20px;
	padding: 10px 0;
	border-top: 1px solid #eee;
	text-align: center;
}

.single-article .post-tags .tag:hover {
	background-color: #e08a00;
}

/* Base styling for menu */


.menu-wrapper ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-end;
}

.menu-wrapper ul li .dropdown-arrow {
	margin-left: 5px;
}
.menu-wrapper ul li {
	position: relative;
	padding: 10px 10px;
	line-height: 80px;
}
.sub-menu li {
	line-height: 28px !important;
	padding: 10px 20px !important;
}
@media (max-width: 1199px) {
.sub-menu li {
	line-height: 20px !important;
	padding: 0px !important;
}
.vertical-menu .menu-item > a:hover, 
.vertical-menu .menu-item-has-children ul li a:hover {
	color: #ffffff !important;
}
.sub-menu li:not(:last-child) {
	border-bottom: 1px solid #353535 !important;
}
}

.sub-menu li:not(:last-child) {
	border-bottom: 1px solid #f4f4f4; 
}
.menu-wrapper ul li a:hover {
	color: var(--color-secondary);
	transition: all 0.3s ease;
}
.menu-wrapper ul li a {
	color: var(--blog-title-color);
	text-decoration: none;
	font-weight: var(--nav-font-weight);
	font-size: var(--nav-font-size);
	font-family: var(--font-menu);
	transition: all 0.3s ease;
	text-transform:	var(--nav-text-transform);
}

.menu-wrapper ul li:hover > ul {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

/* Dropdown styling with fade-in effect */
.menu-wrapper ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.menu-wrapper ul ul ul {
	left: 100%;
	top: 0;
	transform: translateX(10px);
}
#sp-header[data-dropdown="fade"] .menu-wrapper li.menu-item-has-children.open > ul,
#sp-header[data-dropdown="fade"] .menu-wrapper li.menu-item-has-children:hover > ul {
	visibility: visible;
	opacity: 1;
	/* keep translateY for a slight vertical offset if desired */
}

/* Slide effect */
#sp-header[data-dropdown="slide"] .menu-wrapper li.menu-item-has-children.open > ul,
#sp-header[data-dropdown="slide"] .menu-wrapper li.menu-item-has-children:hover > ul {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

/* No animation (instant) */
#sp-header[data-dropdown="none"] .menu-wrapper li.menu-item-has-children.open > ul,
#sp-header[data-dropdown="none"] .menu-wrapper li.menu-item-has-children:hover > ul {
	visibility: visible;
	opacity: 1;
	transform: none;
	transition: none;
}

/* Multi-level dropdown styling */
.menu-wrapper ul li:hover > ul ul {
	display: none;
}

.menu-wrapper ul li ul li:hover > ul {
	display: block;
	opacity: 1;
	transform: translateY(0);
}
.sticky-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
	background-color: var(--header-bg-color);

}

.sticky-enabled {
	transition: all 0.3s ease-in-out;
}

/* Se aplică doar după scroll */
.sticky-header:not(.sticky-enabled) {
	transform: translateY(-100%);
	transition: all 0.3s ease-in-out;
}

#sp-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0);
	background-color: var(--header-bg-color);
	border-bottom: 1px solid rgba(225, 225, 232, 0.4);
	transition: top 0.3s ease, box-shadow 0.3s ease;
}
#sp-header.header-sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	box-shadow: 0 4px 8px rgba(0,0,0,0);
}
#hamburger-toggle {
	display: none;
	font-size: 22px;
	color: #ffffff;
	cursor: pointer;
	padding: 11px;
}

/* Responsive Styling */

@media (max-width: 991px) {
.horizontal-menu {
	display: none;
}
#hamburger-toggle {
	display: inline-block; /* Shows hamburger icon on mobile */
}
}

/* Off-Canvas Sidebar */
#offcanvas-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	background-color: var(--blog-title-color);
	color: #fff;
	transform: translateX(-100%);
	transition: all 0.3s ease;
	overflow-y: auto;
	z-index: 999999;
	padding: 20px;
}

#offcanvas-menu.open {
	transform: translateX(0);
}

/* Close Button */
#offcanvas-close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 22px;
	cursor: pointer;
	color: #000;
	background: #fff;
	border: 0px solid transparent;
	width: 35px;
	height: 35px;
}

/* Sidebar Logo */
.offcanvas-logo {
	text-align: left;
	margin-bottom: 20px;
}
.offcanvas-logo img {
	max-width: 50%;
	height: auto;
}

/* Vertical Menu */
.vertical-menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.vertical-menu .menu-item {
	margin: 0;
}
.vertical-menu .menu-item {
	position: relative;
	transition: width 0.3s ease;
}
.vertical-menu .menu-item > a {
	color: #fff;
	padding: 10px 0;
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 16px;
	border-bottom: 1px solid #444;
	justify-content: space-between; /* Aligns arrow to the right */
	 line-height: 110px; /* Adjusted line-height for top-level items only */
	 transition: width 0.3s ease;
}

.vertical-menu .menu-item-has-children > a .dropdown-arrow {
	font-size: 14px;
	color: #ccc;
	transition: all 0.3s ease; /* Smooth rotation */
}
.vertical-menu .menu-item-has-children > .dropdown-arrow i {
	color: #ffffff;
	transition: width 0.3s ease;
}
.vertical-menu .menu-item-has-children > .dropdown-arrow {
	display: inline-block;
	margin-left: auto;
	transition: all 0.3s ease;
	position: absolute;
	right: 0;
	top: 9px;
	width: 30px;
	height: 30px;
	background: #252525;
	text-align: center;
	line-height: 30px;
}

.vertical-menu .menu-item-has-children.open > .dropdown-arrow {
	transform: rotate(90deg); /* Rotate arrow to point downward when open */
}

.vertical-menu .menu-item-has-children.open > a .dropdown-arrow {
	transform: rotate(90deg); /* Rotate arrow downwards when open */
}

.vertical-menu .dropdown-arrow i {
	font-size: 16px;
	color: #ffffff;
	transition: width 0.3s ease;
}

/* Submenu Styling */
.vertical-menu .menu-item-has-children ul {
	display: none; /* Hide submenu by default */
	list-style-type: none;
	padding: 0;
	margin: 0;
	padding-left: 20px;
	background-color: #444;
}

.vertical-menu .menu-item-has-children.open ul {
	display: block; /* Show submenu when parent is open */
}

.vertical-menu .menu-item-has-children ul li a {
	font-size: 14px;
	color: #ddd;
	padding: 8px 0;
	transition: width 0.3s ease;
}

/* Hover Effects */
.vertical-menu .menu-item > a:hover,
.vertical-menu .menu-item-has-children ul li a:hover {
	color: var(--color-primary);
}


/* Social Icons */
.offcanvas-socials {
	text-align: left;
	margin-top: 20px;
}
.offcanvas-socials .social-link {
	color: #fff;
	font-size: 16px;
	margin: 0 8px;
	display: inline-block;
	transition: color 0.3s ease;
}
.offcanvas-socials .social-link:hover {
	color: var(--color-primary);
	transition: width 0.3s ease;
}
#hamburger-toggle {
	background: var(--blog-title-color);
	border: 2px solid var(--blog-title-color);
}
/* Mobile Menu Adjustments */

@media (max-width: 1199px) {
.vertical-menu .menu-item > a {
	line-height: 28px; 
	transition: width 0.3s ease;
}
.navbar {
	display: flex !important;
	align-items: center;
	padding: 0 1rem;
	box-sizing: border-box;
	width: 100%;
}

#hamburger-toggle {
	display: flex !important;
	position: static;
	margin-left: auto;
	transition: width 0.3s ease;
}

}

.burger-icon {
	width: 25px;
	cursor: pointer;
}
.burger-icon > span {
	background-color: #ffffff !important;
}

/* End of Updated CSS */

#sp-top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Responsive Adjustments for Mobile */
@media (min-width: 769px) and (max-width: 980px) {
#secondary-sidebar.col-md-3 {
	width: 35%;
}
.main-content-area.col-md-9 {
	width: 65%;
}
}
@media (max-width: 768px) {
.pagination {
	margin-bottom: 30px;
}
#sp-top-bar .container {
	flex-direction: column;
	align-items: flex-start;
}

.topbar-socials,
.topbar-contact {
	margin-bottom: 10px; /* Space between sections */
	display: flex;
	flex-wrap: wrap;
}

.topbar-socials a,
.topbar-contact a {
	margin-right: 30px;
	margin-bottom: 5px;
}
}
/**/
#main-sidebar, 
#secondary-sidebar {
	padding: 0px;
	margin-bottom: 20px;
	border: 0px solid #ddd;
	border-radius: 0px;
}
.footer-widget .wp-block-heading,
.footer-widget .widget-title {
	color: var(--footer-text-color);
	font-size: 1.675rem;
	font-weight: 600;
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.widget-title {
	font-size: 1.675rem;
	font-weight: 600;
	color: var(--blog-title-color);
	margin-bottom: 20px;
}

/* Responsive Layout Adjustments */
@media (max-width: 768px) {
.col-md-3, .col-md-6, .col-md-9 {
	width: 100%;
}
}

@media (min-width: 992px) {
.col-md-3 {
	width: 25%;
}
.col-md-6 {
	width: 50%;
}
.col-md-9 {
	width: 75%;
}
}
.lightbox-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
.lightbox-image {
	max-width: 80%;
	max-height: 80%;
}
.lightbox-close {
	position: absolute;
	top: 40px;
	right: 30px;
	font-size: 40px;
	color: #ffffff;
	cursor: pointer;
	background: #000;
	padding: 5px;
}
.lightbox-nav {
	color: white;
	font-size: 24px;
	cursor: pointer;
	padding: 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #000;
}
.lightbox-prev {
	left: 20px;
}
.lightbox-next {
	right: 20px;
}

/**/
.content-area {
	padding: 2.5rem 0;
}
.single-post .post-thumbnail {
	margin-bottom: 90px;
	margin-top: 90px;
}
.post-thumbnail img {
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single-article.content-area,
#primary.content-area {
	padding: 90px 0;
}
/* Sidebar Container Styling */
.blog-layout-grid .post-content {

}

.blog-layout-grid .post-content {
	padding: 1rem 2rem;
	background-color: var(--sidebar-bg-color);
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.sidebar-widget {
	padding: 2rem;
	background-color: var(--sidebar-bg-color);
	border-radius: 10px;
}
.sidebar-widget .wp-block-heading {
	font-size: 24px;
	margin-bottom: 20px;
	margin-top: 0;
}
.sidebar-widget .widget-title {
	margin-bottom: 25px;
	padding-left: 45px;
	position: relative;
	color: var(--blog-title-color);
	
}

.sidebar-widget .widget-title::before {
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	content: "";
	height: 4px;
	width: 18px;
	border-radius: 5px;
	position: absolute;
	background: #ef8642;
}

.sidebar-widget .widget-title::after {
	left: 22px;
	top: 50%;
	-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	content: "";
	height: 4px;
	width: 4px;
	border-radius: 50%;
	position: absolute;
	background: #ef8642;
}

.sidebar-widget .widget-title {
	font-size: 24px;
	font-weight: 600;
}
.sidebar-widget:not(:last-child) {
	margin-bottom: 30px;
}
/* Main Sidebar Menu Styling */
.sidebar-widget .menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
	background-color: #ffffff;
}
.sidebar-widget .menu .menu-item .sub-menu .dropdown-icon	{
	transform: rotate(0deg);
}

.sidebar-widget .menu .menu-item.open > .sub-menu .dropdown-icon {
	top: 5px;
	background: var(--blog-title-color);
	color: #fff;
	transform: rotate(270deg) !important;
}

@media (max-width: 1024px) {
.sidebar-widget .menu .menu-item .dropdown-icon {
	top: 2px;
	right: 0px;	
	background: #eee;
	width: 50px;
	height: 40px;
	text-align: center;
	line-height: 40px;
}
}

.sidebar-widget .menu .menu-item .dropdown-icon {
	position: absolute;
	top: 5px;
	right: 0px;
	background: #eee;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	transform: rotate(270deg);
}
.sidebar-widget .menu .menu-item.open .dropdown-icon {
	transform: rotate(0deg) !important;
}

.sidebar-widget .menu .menu-item {
	margin: 0;
	position: relative;
}

.sidebar-widget .menu .menu-item > a {
	display: flex; /* Flex layout for alignment */
	align-items: center;
	padding: 10px 15px;
	color: var(--blog-title-color);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid #eeeeee;
	background-color: #ffffff;
	transition: color 0.3s ease;
}

/* Styling for the dropdown arrow positioned on the right */
.sidebar-widget .menu .menu-item-has-children > a .dropdown-arrow {
	margin-left: auto; /* Pushes the arrow to the far right */
	font-size: 14px;
	color: #ccc;
	transition: all 0.3s ease;
}

/* Rotate arrow when the submenu is open */
.sidebar-widget .menu .menu-item-has-children.open > a .dropdown-arrow {
	transform: rotate(90deg); /* Rotate arrow to indicate open state */
}

/* Smooth show/hide for submenus */
.sidebar-widget .menu .sub-menu {
	display: none; /* Hide submenu by default */
	padding-left: 20px;
	list-style-type: none;
	padding: 0;
	margin: 0;
	background-color: #eeeeee;
}

.sidebar-widget .menu .menu-item.open > .sub-menu {
	display: block;
}

/* Styling for submenu items */
.sidebar-widget .menu .sub-menu .menu-item > a {
	font-size: 14px;
	color: var(--blog-title-color);
	padding: 8px 15px;
	border-bottom: 1px solid #e5e5e5;
	background-color: #eeeeee;
}

/* Hover Effects */
.sidebar-widget .menu .menu-item > a:hover,
.sidebar-widget .menu .sub-menu .menu-item > a:hover {
	color: var(--color-primary);
}
.sidebar-widget .wp-block-latest-posts a {
	color: var(--blog-title-color);
}
.navigation-single a {
	color: var(--blog-title-color);
}
.navigation-single .next-article,
.navigation-single .prev-article {
	background: #ffffff;
	box-shadow: 0px 5px 25px 0px rgba(114, 114, 255, 0.15);
	padding: 2rem;
	border-radius: 22px;
	cursor: pointer;
	transition: 0.25s;
	overflow: hidden;
	position: relative;
	width: 98%;
	height: auto;	 
	display: block;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 600;
}
/* Comments*/
.sidebar-widget a.wp-block-latest-comments__comment-author {
	color: var(--blog-title-color);
	font-weight: 500;
	
}
.sidebar-widget .wp-block-latest-comments__comment a.wp-block-latest-comments__comment-link {
	color: var(--blog-title-color);
}
.sidebar-widget li.wp-block-latest-comments__comment::before {
	font: var(--fa-font-solid);
	color: var(--blog-title-color);
	transition: 0.3s;
	content: "\f10d";
	background: #ffffff;
	padding: 20px;
	width: 45px;
	height: 45px;
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	margin-right: 7px;
}

.sidebar-widget ol.wp-block-latest-comments {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}

.sidebar-widget .wp-block-latest-comments__comment {
	display: flex;
	align-items: center;
}



/* Main styling for the category list */

.sidebar-widget .wp-block-categories-list .cat-item a::after {
	font: var(--fa-font-solid);
	color: var(--blog-title-color);
	transition: 0.3s;
	content: "\f105";
	float: right;
	line-height: 25px;
	display: block;
}

.sidebar-widget .wp-block-categories-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-widget .wp-block-categories-list .cat-item {
	display: flex;
	justify-content: space-between; /* Aligns text and count to opposite ends */
	align-items: center;
	transition: background-color 0.3s ease, padding-left 0.3s ease;
}
.sidebar-widget .wp-block-archives-list.wp-block-archives li,
.sidebar-widget .wp-block-archives-list.wp-block-archives ul {
	list-style: none;
}
.sidebar-widget ul.wp-block-archives-list.wp-block-archives {
	padding-left: 0 !important;
}
.sidebar-widget .wp-block-archives-list.wp-block-archives li a,
.sidebar-widget .wp-block-categories-list .cat-item {
	display: block;
	color: var(--blog-title-color);
	font-size: 1em;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
	transition: all .5s ease;
	background: rgba(103, 77, 243, 0.1);
	padding: 14px 20px;
	border-radius: 10px;
	margin-bottom: 5px;
	
}

/* Styling the post count aligned to the right */
.sidebar-widget .wp-block-categories-list .cat-item span {
	color: #555555;
	font-weight: 400;
	font-size: 0.9em;
	margin-left: auto;
	padding-right: 15px;
	transition: color 0.3s ease;
}

/* Hover effect for category items */
.sidebar-widget .wp-block-archives-list.wp-block-archives li a:hover,
.sidebar-widget .wp-block-categories-list .cat-item.current-cat,
.sidebar-widget .wp-block-categories-list .cat-item:hover {
	background-color: #fff;
	box-shadow: 0 10px 60px #0000000d;
	color: var(--blog-title-color);
}
.sidebar-widget .wp-block-archives-list.wp-block-archives li a:hover,
.sidebar-widget .wp-block-categories-list .cat-item:hover {
	transform: translateX(0px) scale(1.01);
}
.sidebar-widget .wp-block-archives-list .wp-block-archives li a,
.sidebar-widget .wp-block-categories-list .cat-item a {
	font-weight: 600;
}
.sidebar-widget .wp-block-archives-list .wp-block-archives li a,
.sidebar-widget .wp-block-categories-list .cat-item a,
.sidebar-widget .wp-block-categories-list .cat-item:hover > a,
.sidebar-widget .wp-block-categories-list .cat-item:hover span {
	color: var(--blog-title-color);
}


/**/
/* Comment Form Styling */
.comments-section {
	background: #ffffff;
	border: 2px solid #000;
	border-radius: 10px;
	padding: 65px 60px 70px;
	margin-top: 40px;
}

.comments-section input, 
.comments-section textarea {
	margin-bottom: 20px;
	outline: none;
	padding: 20px 30px;
	line-height: 1;
	font-size: 16px;
	width: 100%;
	border: none;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--blog-title-color);
	background-color: #eeeeee;
}

.comments-section textarea {
	height: 200px;
	line-height: 1.3;
}

/* Comment Reply Title */
.comments-section .comment-reply-title {
	font-size: 38px;
	font-weight: 600;
	color: var(--blog-title-color);
}

/* Comments Section Styling */
.comments-area h2.comments-title {
	font-size: 24px;
	font-weight: bold;
	color: var(--blog-title-color);
	margin-bottom: 20px;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 10px;
}

/* Comment List */
.comments-item-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.single-comment-item {
	display: flex;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e2e2e2;
}

/* Author Image */
.single-comment-item .author-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 20px;
}

.single-comment-item .author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Comment Info */
.single-comment-item .author-info-comment {
	flex: 1;
}

.single-comment-item .author-info-comment .info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
}

.single-comment-item .author-info-comment .info h5 {
	font-size: 16px;
	font-weight: bold;
	color: var(--blog-title-color);
	margin: 0;
}

.single-comment-item .author-info-comment .info h5 a {
	color: var(--blog-title-color);
	text-decoration: none;
}

.single-comment-item .author-info-comment .info h5 a:hover {
	color: #ef8642;
}

.single-comment-item .author-info-comment .info span {
	font-size: 14px;
	color: #777777;
}

/* Reply Button */
.single-comment-item .author-info-comment .info .reply a,
.comments-item-list .single-comment-item .author-info-comment .info a.comment-reply-link {
	padding: 7px 18px;
	font-size: 14px;
	color: #727475;
	border: 1px solid #ebebeb;
	background: #ffffff;
	text-decoration: none;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.single-comment-item .author-info-comment .info .reply a i,
.comments-item-list .single-comment-item .author-info-comment .info a.comment-reply-link i {
	margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .info a.comment-reply-link:hover {
	color: #ffffff;
	border: 1px solid var(--topbar-hover-color);
	background: var(--topbar-hover-color);
}

/* Comment Text */
.single-comment-item .author-info-comment .comment-text {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.6;
	color: #555555;
}

/* Styling for Nested Replies */
.single-comment-item ul.children {
	list-style: none;
	padding-left: 40px;
	margin-top: 20px;
	border-left: 2px solid #dddddd;
}

.single-comment-item ul.children .single-comment-item {
	padding-left: 20px;
	border-bottom: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
#sp-header {
	height: 90px;
}
.comments-section {
	padding: 50px 40px 60px;
}
.comments-section input, 
.comments-section textarea {
	padding: 15px 20px;
	font-size: 14px;
}
.comments-section .comment-reply-title {
	font-size: 32px;
}
.single-comment-item .author-img {
	width: 70px;
	height: 70px;
	margin-right: 15px;
}
.single-comment-item .author-info-comment .info h5 {
	font-size: 14px;
}
.single-comment-item .author-info-comment .info span {
	font-size: 12px;
}
.comments-item-list .single-comment-item .author-info-comment .info a.comment-reply-link {
	font-size: 12px;
	padding: 6px 15px;
}
}

@media (max-width: 767px) {
	
.comments-section {
	padding: 40px 30px 50px;
}
.single-comment-item {
	flex-direction: column;
}
.single-comment-item .author-img {
	margin-right: 0;
	margin-bottom: 15px;
}
.single-comment-item ul.children {
	padding-left: 20px;
}
}

/**/

.wp-block-latest-posts.wp-block-latest-posts__list li {
	padding: 6px 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:not(:last-child) {
	border-bottom: 1px solid #eee;
}
.wp-block-latest-posts__list.wp-block-latest-posts a {
	color: #3f3f3f;
	text-decoration: none;
}
.site-main {
	padding: 80px 0;
}
/**/
/* Base header styling */
#sp-header {
	transition: all 0.3s ease;
}

/* Sticky header styling */
#sp-header.header-sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background: var(--header-bg-color);
	transition: all 0.3s ease-in-out;
	z-index: 99999 !important;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	gap: 10px;
	width: 100%; 
	text-align: center;
}

.pagination .nav-links .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	text-decoration: none;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	color: var(--blog-title-color);
	transition: all 0.3s ease;
}

.pagination .nav-links .page-numbers:hover {
	background-color: var(--color-primary);
	color: #fff !important;
	border-color: var(--color-primary);
}

.pagination .nav-links .page-numbers.current {
	background-color: var(--color-primary);
	color: #fff !important;
	border-color: var(--color-primary);
	font-weight: 500;
}

.pagination .nav-links .next,
.pagination .nav-links .prev {
	font-weight: 500;
	color: var(--blog-title-color);
}

.pagination .nav-links .next:hover,
.pagination .nav-links .prev:hover {
	color: var(--color-primary);
}

/*Button*/
.wp-block-button__link {
	position: relative;
	display: inline-block;
	padding: 14px 30px;
	font-size: 16px;
	font-weight: bold;
	text-transform: capitalize;
	text-decoration: none;
	border-radius: 2px;
	overflow: hidden;
	cursor: pointer;
	 transition: all 0.4s ease-in-out;
	z-index: 1;
}

.wp-block-button__link::before,
.wp-block-button__link::after {
	content: "";
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.wp-block-button__link::before {
	left: -50%;
}

.wp-block-button__link::after {
	right: -50%;
}

.wp-block-button__link:hover::before {
	left: 0;
}

.wp-block-button__link:hover::after {
	right: 0;
}



.wp-block-button__link::before,
.wp-block-button__link::after {
	transition: all 0.4s ease-in-out;
}
.wp-block-button__link:hover {
	transform: scale(1.03);
	transition: all 0.4s ease-in-out;
}
/**/
.recent-posts-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.recent-post-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.recent-post-thumb img {
	width: 80px;
	height: 80px;
	border-radius: 5px;
	margin-right: 15px;
	object-fit: cover;
}

.recent-post-text h3 {
	font-size: 16px;
	margin: 0;
}

@media (max-width: 768px) {
.recent-post-item {
	flex-direction: column;
	align-items: flex-start;
}
	
.recent-post-thumb img {
	margin-bottom: 10px;
}
}

/*footer social test*/

.footer-widget.widget_block {
	text-align: left;
}
.footer-social {
	margin-top: 5px;
	margin-bottom: 0;
	padding: 0;
	text-align: center;
}
.footer-social > li {
	display: inline-block;
	margin: 0 33px;
}
.footer-social > li > a {
	color: #f9f9f9;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.footer-social > li > a > i {
	font-size: 13px;
	margin-right: 15px;
}
.footer-social > li > a:hover {
	opacity: 0.5;
}
/**/

/* Fade */
.sub-menu.fade {
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.sub-menu.fade.show {
	opacity: 1;
	transform: translateY(0);
}

/* Slide */
.sub-menu.slide {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.sub-menu.slide.show {
	opacity: 1;
	max-height: 300px; /* Ajustează după nevoie */
}

/* None */
.sub-menu.none {
	opacity: 1;
	transform: none;
}

.page-header-container {
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 4rem 0;
	background-color: var(--sidebar-bg-color);
}

.page-header {
	max-width: 900px;
	width: 100%;
}

.page-title {
	font-size: 2.5rem;
	color: var(--blog-title-color);
	margin: 0;
}
.space-mb {
	padding: 20px 0;
}
.light-blog-color {
	background-color: var(--sidebar-bg-color);
}
/**/

.elementskit-btn:hover,
.elementskit-btn {
	transition: all 0.4s ease;
}
.fiximg-height img {
	height: 300px !important;
	width: 100%;
	object-fit: cover !important;
}

/**/
.footer-feature {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: block;
}

.footer-feature li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.footer-feature i {
	margin-right: 10px;
	font-size: 18px; 
	display: inline-block;
	color: var(--color-secondary);
}

.footer-feature a {
	color: inherit;
	text-decoration: none;
}

@media (min-width: 768px) {
.footer-feature {
	flex-direction: row; /* Align items in a row on larger screens */
	justify-content: space-between;
}

.footer-feature li {
	margin-bottom: 15px;
	margin-right: 20px;
}
}

/**/
.footer-menutwo {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: block;
}
.footer-menutwo li a:hover,
.footer-menutwo li a {
	transition: all 1s ease 0s;
}
.footer-menutwo li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 1.1rem;
}
.footer-menutwo li a:hover {
	color: var(--color-secondary) !important;
}
.footer-menutwo i {
	margin-right: 10px;
	font-size: 18px; 
	display: inline-block;
	color: var(--color-secondary);
}

.footer-menutwo a {
	color: inherit;
	text-decoration: none;
}

@media (min-width: 768px) {
.footer-menutwo {
	flex-direction: row; 
	justify-content: space-between;
}

.footer-menutwo li {
	margin-bottom: 15px;
	margin-right: 20px;
}
}

.footer-menutwo li {
	position: relative;
	overflow: hidden;
}

.footer-menutwo li a {
	position: relative;
	transition: color 0.3s ease;
}

.footer-menutwo li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-secondary);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.footer-menutwo li a:hover::after {
	transform: translateX(0);
}

/**/
.widget-title {
	position: relative;
	font-size: 1.5rem;	
	margin-bottom: 1rem;
	padding-bottom: 0.5rem; 
}
.footer-widget .wp-block-heading::after,
.widget-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0; 
	width: 60px;
	height: 3px;
	background: var(--color-secondary);
	border-radius: 2px;
}
/**/

/* 1. Forţează grid în loc de flex */
.footer-widget.widget_media_gallery .wp-block-gallery.is-layout-flex {
	display: grid !important;
	gap: 15px;	/* spațiu între imagini */
}

/* 2. Template columns pe baza clasei generate de WP */
/* Dacă foloseşte class="columns-default" (adică setarea implicită, de obicei 3 coloane) */
.footer-widget.widget_media_gallery .wp-block-gallery.columns-default,
.footer-widget.widget_media_gallery .wp-block-gallery.columns-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}

/* Alte variante */
.footer-widget.widget_media_gallery .wp-block-gallery.columns-2 {
	grid-template-columns: repeat(2, 1fr) !important;
}
.footer-widget.widget_media_gallery .wp-block-gallery.columns-4 {
	grid-template-columns: repeat(4, 1fr) !important;
}
.footer-widget.widget_media_gallery .wp-block-gallery.columns-5 {
	grid-template-columns: repeat(5, 1fr) !important;
}

/* 3. Elimină marginile implicite și fă imaginile responsive */
.footer-widget.widget_media_gallery .wp-block-gallery .wp-block-image {
	margin: 0 !important;
}
.footer-widget.widget_media_gallery .wp-block-gallery .wp-block-image img {
	display: block;
	width: 100%;
	height: auto;
	height: 80px;
	object-fit: cover;
}

/**/
@media (min-width: 600px) {
.sp-footer .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
	width: 100%;
}
}

.heigt300p .elementor-image-gallery figure img {
	height: 350px !important;
	object-fit: cover !important;
}

.form01 div.wpforms-container-full .wpforms-form .choices .choices__inner,
.form01 div.wpforms-container-full .wpforms-form .wpforms-field .wpforms-field-row:last-of-type,
.form01 div.wpforms-container-full .wpforms-form input[type="date"], div.wpforms-container-full .wpforms-form input[type="datetime"], 
.form01 div.wpforms-container-full .wpforms-form input[type="datetime-local"], div.wpforms-container-full .wpforms-form input[type="email"], 
.form01 div.wpforms-container-full .wpforms-form input[type="month"], div.wpforms-container-full .wpforms-form input[type="number"], 
.form01 div.wpforms-container-full .wpforms-form input[type="password"], div.wpforms-container-full .wpforms-form input[type="range"], 
.form01 div.wpforms-container-full .wpforms-form input[type="search"], div.wpforms-container-full .wpforms-form input[type="tel"], 
.form01 div.wpforms-container-full .wpforms-form input[type="text"], div.wpforms-container-full .wpforms-form input[type="time"], 
.form01 div.wpforms-container-full .wpforms-form input[type="url"], div.wpforms-container-full .wpforms-form input[type="week"], 
.form01 div.wpforms-container-full .wpforms-form select, div.wpforms-container-full .wpforms-form textarea {
	max-width: 100%;
	height: 60px !important;
	border-radius: 5px;
}
@media (min-width: 1200px) {
.form01 .wpforms-container { 
	max-width: 800px;
}
div.wpforms-container-full .wpforms-form input[type="submit"], 
div.wpforms-container-full .wpforms-form button[type="submit"], 
div.wpforms-container-full .wpforms-form .wpforms-page-button {
	min-width: 180px;
}
}
.form01 div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
	height: 250px !important;
}
div.wpforms-container-full .wpforms-form input[type="submit"], 
div.wpforms-container-full .wpforms-form button[type="submit"], 
div.wpforms-container-full .wpforms-form .wpforms-page-button {
	font-size: 15px;
	font-weight: 600;
	border-radius: 4px;
	padding: 20px 35px 20px 35px;
	height: 60px !important;
}
.form01 .wpforms-form .wpforms-submit {
	display: block;
	margin: 0 auto;
}

/**/

.wp-block-search__input {
	border: 2px solid rgba(103, 77, 243, 0.2);
	padding: 15px;
	border-radius: 10px;
}
.wp-block-search__button.has-icon {
	border-radius: 10px;
	padding: 5px 12px;
	background: var(--topbar-bg-color);
	color: #fff;
	border: 1px solid transparent;
}

/*Header Two*/
#sp-header.header-two {
	border-bottom: 3px solid var(--color-primary);
	padding: 1rem 0;
	background-color: var(--color-background);
}

#sp-header.header-two .logo a,
#sp-header.header-two .logo img {
	max-height: 60px;
	line-height: 1;
}

#sp-header.header-two .navbar-nav {
	margin-left: auto;
}

#sp-header.header-two .navbar-nav .nav-link {
	padding: 0.5rem 1rem;
	color: var(--color-text);
	transition: color 0.2s ease;
}

#sp-header.header-two .navbar-nav .nav-link:hover,
#sp-header.header-two .navbar-nav .nav-link:focus {
	color: var(--color-primary);
}

#sp-header.header-two .navbar-toggler {
	border-color: var(--color-primary);
}

#sp-header.header-two .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='{{COLOR}}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>"
);
}
/* Replace {{COLOR}} in the SVG above with your primary-color hex (minus the #) */

/* Offcanvas menu tweaks only for header-two */
#sp-header.header-two + #offcanvas-menu {
	width: 280px;
	background: var(--color-background);
}

/* Dropdown arrow rotation in offcanvas for header-two */
#sp-header.header-two + #offcanvas-menu .menu-item-has-children.open .dropdown-arrow {
	transform: rotate(90deg);
}

/* Make sure mobile toggler inherits header-two look */
@media (max-width: 991px) {
#sp-header.header-two #hamburger-toggle {
	color: var(--color-primary);
}
}
/*Header Three – Unique Scoped Styles*/

/* Base container padding & border */
#sp-header.header-three {
	padding: 1rem 0;
	border-top: 4px solid var(--color-primary);
	transition: box-shadow 0.3s ease;
}

/* Sticky shadow */
#sp-header.header-three.main-header {
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Desktop nav links */
#sp-header.header-three .header-three-nav .nav-link {
	color: var(--color-text);
	font-weight: 500;
	padding: 0.25rem 0.5rem;
	transition: color 0.2s ease, background 0.2s ease;
}
#sp-header.header-three .header-three-nav .nav-link:hover,
#sp-header.header-three .header-three-nav .nav-link:focus {
	color: var(--color-primary);
	background: rgba(0,0,0,0.05);
	border-radius: 4px;
}

/* Logo sizing */
#sp-header.header-three .header-three-logo img,
#sp-header.header-three .header-three-logo .site-title {
	max-height: 60px;
	display: block;
	margin: auto;
}

/* CTA button */
#sp-header.header-three .header-three-cta .btn-primary {
	text-transform: uppercase;
	padding: 0.5rem 1.25rem;
	font-size: 0.9rem;
	border: none;
	transition: background-color 0.2s ease;
}
#sp-header.header-three .header-three-cta .btn-primary:hover {
	background-color: var(--color-secondary);
}

/* Search icon */
#sp-header.header-three .header-three-cta .btn-link {
	color: var(--color-text);
	font-size: 1.2rem;
}
#sp-header.header-three .header-three-cta .btn-link:hover {
	color: var(--color-primary);
}

/* Mobile hamburger */
@media (max-width: 991px) {
#sp-header.header-three #hamburger-toggle {
	color: var(--color-primary);
	font-size: 1.5rem;
	background: none;
	border: none;
}
}

/* Offcanvas tweaks for header-three */
#sp-header.header-three + #offcanvas-menu {
	background: var(--color-background);
	width: 280px;
}
#sp-header.header-three + #offcanvas-menu .dropdown-arrow {
	transition: transform 0.2s ease;
}
#sp-header.header-three + #offcanvas-menu .menu-item-has-children.open .dropdown-arrow {
	transform: rotate(90deg);
}

/**/
/*———————————————————
	Search Toggle Button (shared)
———————————————————*/
.dentistry-search-toggle,
.dentistry-search-toggle-three {
	background: transparent;
	border: none;
	font-size: 1.25rem;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	color: var(--color-text);
	transition: color 0.3s ease;
}
.dentistry-search-toggle:hover,
.dentistry-search-toggle-three:hover {
	color: var(--color-primary);
}

/*———————————————————
	Header Two Search Popup
———————————————————*/
.dentistry-search-popup {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}
.dentistry-search-popup.is-active {
	display: flex;
}
.dentistry-search-content {
	position: relative;
	background: #fff;
	padding: 2rem;
	max-width: 480px;
	width: 90%;
	border-radius: 6px;
}
.dentistry-search-close {
	position: absolute;
	top: 0.4rem;
	right: 0.4rem;
	background: none;
	border: none;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}

/*———————————————————
	Header Three Search Popup
———————————————————*/
.dentistry-search-popup-three {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}
.dentistry-search-popup-three.is-active {
	display: flex;
}
.dentistry-search-content-three {
	position: relative;
	background: #fff;
	padding: 2rem;
	max-width: 480px;
	width: 90%;
	border-radius: 6px;
}
.dentistry-search-close-three {
	position: absolute;
	top: 0.4rem;
	right: 0.4rem;
	background: none;
	border: none;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}

/*Header Two – Search Toggle*/

/* === Search Button Style === */
.default-search-toggle {
	background-color: transparent;
	border: 2px solid #007cba;
	color: #007cba;
	padding: 8px 12px;
	font-size: 16px;
	border-radius: 50px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.default-search-toggle:hover {
	background-color: #007cba;
	color: #fff;
}

/* === Search Popup === */
.default-search-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(20, 20, 20, 0.85);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.3s ease;
}
.default-search-popup.is-active {
	display: flex;
}
.default-search-content {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	min-width: 400px;
	width: 90%;
	max-width: 600px;
	position: relative;
}
.default-search-close {
	position: absolute;
	bottom: -50px;
	right: 15px;
	font-size: 45px;
	border: none;
	cursor: pointer;
	background: var(--color-secondary);
	color: var(--color-primary);
	border-radius: 50%;
	height: 45px;
	width: 45px;
	line-height: 38px;
}

/* Search Form Layout */
.default-search-content form {
	display: flex;
	align-items: center;
}
.default-search-content input[type="search"] {
	flex: 1;
	padding: 12px 18px;
	border: 2px solid #7b3ff2;
	border-radius: 8px;
	outline: none;
	font-size: 16px;
}

/* === Header Two: Search Icon Style === */
#sp-header.main-header.style-two .col-lg-2 {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}
#sp-header.main-header.style-two button.search-icon-button {
	background: var(--color-secondary);
	color: var(--color-primary);
	border: none;
	cursor: pointer;
	border-radius: 50%;
	height: 45px;
	width: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#sp-header.main-header.style-two button.search-icon-button:hover {
	background: var(--color-primary);
	color: #fff;
	transform: scale(1.05);
}

/* Optional: Style for hamburger toggle */
#sp-header.main-header.style-two #hamburger-toggle {
	background: transparent;
	color: #333;
	font-size: 20px;
	border: none;
}
.header3-button {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 14px 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.header3-button:hover {
    background-color: var(--color-primary);
    color: var(--blog-title-color);
}
.wp-block-tag-cloud a {
	color: var(--blog-title-color);
	transition: all 0.3s ease;
}
.wp-block-tag-cloud a:hover {
	color: var(--color-secondary);
	transition: all 0.3s ease;
}

/**/
.wpcf7-form label {
	color: var(--blog-title-color);
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}
.wpcf7-form label {
	color: var(--blog-title-color);
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	margin-bottom: 7px;
}
.wpcf7-form .form-control,
.wpcf7-form textarea.form-control {
	max-width: 100%;
	border-radius: 5px;
	background-color: #fff;
	color: rgba( 0, 0, 0, 0.7 );
	border-width: 1px;
	border-style: solid;
	border-color: rgba( 0, 0, 0, 0.25 );
	padding: 14px;
	font-size: 16px;
	line-height: 100%;
	box-shadow: none;
	transition: border 0.15s, box-shadow 0.15s;
}
.wpcf7-form textarea.form-control {
	height: 250px;
}
.wpcf7-form .form-control {
	height: 60px;
}
.wpcf7-form .btn-primary {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	color: #ffffff;
	font-size: 17px;
	font-weight: 600;
	padding: 1.1rem 1.6rem;
	margin: auto;
	display: block;
}
.wpcf7-form .btn-primary:hover {
	color: var(--blog-title-color);
	background: var(--color-primary);
	border-color: var(--color-primary);
}

@media (min-width: 1200px) {
.wpcf7-form.init {
	max-width: 800px;
	display: block;
	margin: auto;
}
}
/**/
@media (max-width: 1024px) {
html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
}
.fa-twitter {
  --fa: "\e61b" !important;
}
@media (min-width: 480px) and (max-width: 900px) {
#site-footer .col-md-3{
	width: 50%;
}
}