/*!
Theme Name: CyboShield
Theme URI: https://cyboshield.com/
Author: CyboShield
Author URI: https://cyboshield.com/
Description: CyboShield is a modern cybersecurity WordPress theme built for compliance, security services, and managed solutions.
Version: 2.1
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cyboshield
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout

CyboShield is based on Underscores (https://underscores.me/), © Automattic, Inc.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Variables
# Normalize / Reset
# Base
- Typography
- Elements
- Links
- Forms
# Layout
- Containers
- Responsive Utilities
# Components
- Buttons
- Navigation
- Header / Top Bar
- Footer
# Widgets
# Plugins
- Jetpack
# Utilities
- Accessibility
- Alignments
- Animations
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
	--primary-color: #003049;
	--secondary-color: #FF3B3F;
	--body-text-color: #787878;
	--heading-color: #003049;
	--white: #ffffff;
	--black: #000000;
	--font-family-base: 'Poppins', sans-serif;
}


/*--------------------------------------------------------------
# Normalize / Reset
--------------------------------------------------------------*/

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-family-base);
	font-size: 16px;
	line-height: 1.6;
	color: var(--body-text-color);
	background-color: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography */
h1, h2, h3, h4, h5, h6 {
	color: var(--heading-color);
	font-family: var(--font-family-base);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 0.5em;
}

p {
	margin-bottom: 1em;
}

ul, ol {
	margin: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul, li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

/* Links */
a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover,
a:focus, {
	color: var(--secondary-color) !important;
}

/* Forms */
input, button, textarea, select {
	font: inherit;
}

/* Tables */
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5em;
}

/* Images & media */
img,
video,
iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

hr {
	border: none;
	border-top: 1px solid var(--primary-color);;
	margin: 1.5em 0;
}


/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}


/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Sticky Header Wrapper */
.sticky-header {
	position: sticky;
	top: 0;
	z-index: 999;
	width: 100%;
	background: var(--white);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Top Header Bar */
.top-header {
	background-color: var(--primary-color);
	font-size: 14px;
	color: var(--white);
}

.top-header a {
	color: var(--white);
}

.top-header a:hover {
	color: var(--secondary-color);
}

.top-header .vr {
	border-left: 1px solid rgba(255,255,255,0.3);
	height: 14px;
	margin: 4px 10px;
}
.social-icons a {
	font-size: 16px;
}
.social-icons a:hover {
	color: var(--secondary-color) !important;
}

/* Navigation Header */
.site-header .navbar {
	border-bottom: 1px solid #eee;
	padding: 0;
	height: 70px;
}
.logo-img {
	width: 69%;
	height: auto;
}

/* menu */
/* Base container */
.menu-primary-container {
	height: 70px;
	position: relative;
	width: 100%;
	clear: both;
	display: block;
}

/* Reset nav menu */
ul.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 70px;
	text-align: right;
	gap: 25px;
	display: flex;
	justify-content: flex-end;
}

/* Top-level items */
ul.nav-menu li {
	display: inline-block;
	position: relative;
	padding: 0;
}

/* Top-level links */
ul.nav-menu li a {
	line-height: normal;
	text-transform: capitalize;
	padding: 0;
	font-weight: 500;
	letter-spacing: 0.5px;
	font-size: 16px;
	text-decoration: none;
	outline: 0;
	color: var(--primary-color);
	position: relative;
	display: table-cell;
	height: 70px;
	vertical-align: middle;
}

/* Hover color */
ul.nav-menu li a:hover {
	color: var(--secondary-color);
}

/* Dropdown indicator arrow */
ul.nav-menu li.menu-item-has-children > a::after {
	font-family: "FontAwesome";
	content: "\f078";
	font-size: 12px;
	color: var(--primary-color);
	padding-left: 5px;
}
/* second Dropdown indicator right arrow */
ul.nav-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children a:after {
	font-family: "FontAwesome";
	content: "\f105";
	font-size: 12px;
	color: var(--primary-color);
	float: right;
}

ul.nav-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children li a:after {
	content: none;
}
/* First-level dropdown */
ul.nav-menu li ul.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
	width: 255px;
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: var(--white);
	box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
	transition: opacity 0.3s ease;
	text-align: left;
}

/* Show dropdown on hover */
ul.nav-menu li:hover > ul.sub-menu,
ul.nav-menu li.focus > ul.sub-menu {
	left: 0;
	display: block;
}
/* Submenu links */
ul.nav-menu li ul.sub-menu li {
	width: 100%;
}

ul.nav-menu li ul.sub-menu li a {
	width: 100%;
	padding: 10px 15px;
	color: var(--primary-color);
	background: none;
	font-size: 14px;
	display: block;
	text-transform: none;
	line-height: 1.3em;
	height: auto;
	text-align: left;
}

ul.nav-menu li ul.sub-menu li a:hover {
	color: var(--secondary-color);
}

/* Second-level dropdowns (flyouts) */
ul.nav-menu li ul.sub-menu li ul.sub-menu {
	top: 0;
	padding: 8px 20px;
	width: 345px;
}

ul.nav-menu li ul.sub-menu li:hover > ul.sub-menu,
ul.nav-menu li ul.sub-menu li.focus > ul.sub-menu {
	left: 100%;
}
ul.nav-menu li ul.sub-menu li {
	width: 100%;
	line-height: 2em;
}
ul.nav-menu li ul.sub-menu li ul li a {
	font-size: 14px;
	padding: 0;
}
/* menu close */


/* Hero section full screen */
.top-banner {
	position: relative;
	height: calc(100vh - 111px); /* Full screen minus header height */
	overflow: hidden;
	margin-top: 0; /* Push content below fixed header */
}

/* Background video */
.bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* Overlay over video */
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

/* Text slider wrapper */
.hero-text-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

/* Slide content */
.carousel-caption {
	max-width: 700px;
	padding: 2rem;
	position: relative;
	z-index: 3;
	margin: 0 auto;
	left: auto;
	right: auto;
}

.hero-title {
	color: var(--white);
	font-size: 3rem;
	font-weight: 700;
}

.hero-description {
	color: var(--white);
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
}
.btn-know-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--primary-color);
	color: #fff;
	padding: 6px 10px 6px 20px;
	font-size: 1rem;
	font-weight: 500;
	border: none;
	border-radius: 40px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-know-more i {
	font-size: 16px;
	width: 35px;
	height: 35px;
	background-color: #001F2F;
	border-radius: 100px;
	line-height: 35px;
	transform: rotate(-28deg);
}

.btn-know-more:hover {
	background-color: var(--secondary-color);
	color: #fff !important;
}

/* Dots (indicators) styling */
.carousel-indicators {
	position: absolute;
	z-index: 3;
	width: 100%;
	margin: 0 auto;
	display: block;
	margin-bottom: 1em;
	text-align: center;
}

.carousel .carousel-indicators button {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: rgba(255,255,255,.2);
	border: none;
	margin: 0 3px;
	opacity: 1;
	transition: background-color 0.3s ease;
}

.carousel .carousel-indicators .active {
	background-color: var(--secondary-color);
}


















/* service */
.section-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.section-heading .section-title {
	font-size: 45px;
	font-weight: 600; /* Poppins SemiBold */
	color: transparent;
	-webkit-text-stroke: 1px var(--heading-color); /* Outline stroke */
	text-stroke: 1px var(--heading-color); /* Optional for non-webkit support */
	letter-spacing: 1px;
	margin: 0;
}

.section-heading .section-subtitle {
	font-size: .9em;
	font-weight: 400;
	color: var(--primary-color);
}

.bg-light {
	background-color: #F1F5F9 !important;
}
.text-justify {
	text-align: justify !important;
}


/* Services Section */
.service-grid .service-card, .service-card {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.service-grid .service-card:hover {
	transform: translateY(-5px);
}

.card-img-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.card-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.service-card:hover .card-img-wrapper img {
	transform: scale(1.05);
}
.service-card:hover .card-overlay {
	background-color: var(--white)
}

.card-overlay {
	position: absolute;
	bottom: 5%;
	left: 5%;
	width: 90%;
	padding: 1em;
	background-color: rgba(255,255,255,0.8);
	margin: 0 auto;
	display: table;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.card-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.card-text {
	font-size: 0.95rem;
	color: var(--primary-color);
	margin: 0;
	line-height: 1.4;
	/* 	text-align: justify; */
}




/* Why Us Section */
.why-box {
	background-color: #f1f5f9;
	transition: 0.3s ease;
}

.why-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.why-box span {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: var(--white);
	display: block;
	text-align: center;
}
.why-box span img {
	padding: 15px 14px 14px 15px;
}
.why-box h5 {
	font-size: 1rem;
	color: var(--primary-color);
}

.why-box p {
	font-size: 0.9rem;
	color: var(--body-text-color);
	margin: 0;
}

/* CTA */
.cta-bg-overlay {
	padding: 4em 0;
	background-image: url("/wp-content/uploads/2025/07/cta.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--white);
	color: var(--primary-color);
	padding: 6px 10px 6px 20px;
	font-size: 1rem;
	font-weight: 500;
	border: none;
	border-radius: 40px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	text-decoration: none;
}

.cta-btn i {
	font-size: 16px;
	width: 35px;
	height: 35px;
	background-color: #001F2F;
	color: #fff;
	border-radius: 100px;
	line-height: 35px;
	transform: rotate(-28deg);
}

.cta-btn:hover {
	background-color: var(--secondary-color);
	color: #fff !important;
}

/* how it works */
.outlined-heading {
	font-family: var(--font-family-base);
	font-weight: 600;
	font-size: 65px;
	color: transparent;
	-webkit-text-stroke: 1px var(--primary-color);
	text-stroke: 1px var(--primary-color);
}
.step-circle {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background-color: var(--white);
	color: var(--primary-color);
	font-weight: normal;
	font-size: 20px;
	line-height: 55px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.step-label {
	font-weight: normal;
	color: var(--primary-color);
}
.step-box h5 {
	font-weight: normal;
	font-size: 1.1em;
	margin-bottom: 5px;
}
.text-body-text {
	margin: 0;
	font-size: .9em;
	text-align: justify;
	line-height: 1.3;
}
.logo.mb-5 {
	width: 65%;
	margin: 0 auto;
}

/* Contact section */
.contact-heading {
	font-size: 1.2rem;
	font-weight: normal;
	color: var(--heading-color);
}

.contact-subheading {
	font-size: 1rem;
	color: var(--body-text-color);
}

.contact-title {
	font-size: 1.1rem;
	font-weight: normal;
	color: var(--heading-color);
}

.contact-info {
	font-size: 1rem;
	padding-left: 25px;	
}
.contact-info a {
	color: var(--body-text-color);
}
.contact-info a:hover {
	color: var(--secondary-color);
}
.contact-form-box {
	background-color: var(--form-bg);
	border-radius: 16px;
}

.form-title {
	color: var(--heading-color);
}

.form-control {
	font-size: 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
}

textarea.form-control {
	resize: none;
}

.btn-know-more.whatsapp {
	background-color: #fff;
	color: var(--primary-color);
}

.btn-know-more.whatsapp i {
	background-color: #25D366;
	font-size: 1.3em;
	transform: none;
	text-align: center;
	color: #fff;
}
.btn-know-more.whatsapp:hover {
	background-color:var(--secondary-color);
	color: #fff;
}
.btn-know-more.whatsapp:hover i {
	background-color: #fff;
	color: #25D366;
}

/* Footer */
.custom-footer {
	border-top: 1px solid #e0e0e0;
}

.footer-text {
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 400;
}

.footer-links a {
	margin: 0 10px;
	color: var(--primary-color);
	text-decoration: none;
	font-size: 14px;
}

.footer-links a:hover {
	color: var(--secondary-color);
}

/* About */
.about-section .section-heading {
	margin: 0 0 1em 0;
	text-align: left;
}
.cybo-stats-section {
	background-color: #F1F5F9;
}

.cybo-stat-label {
	font-size: 16px;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.cybo-stat-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

/* contact */
.contact-banner {
	background-image: url("/wp-content/uploads/2025/07/contact.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 300px;
	border-radius: 20px;
	border: 10px solid #fff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}
.contact-title {
	font-size: 1.25rem;
	font-weight: normal;
	color: var(--primary-color);
	margin-bottom: 0.25rem;
}

.contact-subtext {
	color: var(--body-text-color);
	margin-bottom: 0.5rem;
}

.contact-link {
	color: var(--primary-color);
	font-weight: 500;
	font-size: 1rem;
	text-decoration: none;
}

.contact-link:hover {
	color: var(--secondary-color);
}


/* Service details pages */
.banner-section p {
	color: var(--body-text-color);
}
.service-section .contact-banner {
	background-image: none;
}
.service-text-content {
	font-size: 1rem;
}
.service-text-content p {
	margin-bottom: 1.5em;
}
.service-text-content strong {
	font-weight: 600;
}
.service-text-content ul, .service-text-content ol {
	margin: 0 0 1.5em 0;
}
.service-text-content ul li, .service-text-content ol li {
	margin-bottom: 0.5em;
	line-height: normal;
}
p.cybo-primary-text {
	color: var(--primary-color);
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 1.2em;
}


/* Heading */
.sidebar-title {
	color: var(--primary-color);
	font-weight: 500;
	font-size: 1.5rem;
}

/* Links list */
.service-links li a {
	display: block;
	padding: 14px 14px;
	background-color: #fff;
	font-weight: normal;
	font-size: 13px;
	border: 1px solid var(--primary-color);
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease;
	text-align: left;
}

/* Hover effect */
.service-links li a:hover {
	background-color: var(--primary-color);
	color: var(--white);
}	

.active-link {
	background-color: var(--primary-color) !important;
	color: var(--white);
}


/******** Responsive  ***********/
/* For devices up to 768px (phones & small tablets) */
@media (max-width: 767px) {
	.site-header .navbar {
		padding: 10px 0;
		height: 60px;
	}
	.logo-img {
		width: 55%;
	}
	/* 	.menu-primary-container {
	display: none;
} */
	.top-banner {
		height: calc(100vh - 60px);
	}
	.hero-title {
		font-size: 2.2rem;
	}
	.section-heading {
		margin-bottom: 2rem;
	}
	.section-heading .section-title {
		font-size: 30px;
	}
	.card-overlay {
		bottom: 7%;
	}
	.cta-bg-overlay {
		padding: 2.5em 0;
	}
	.contact-title {
		font-size: 1rem;
	}
	.contact-subheading.mb-5, .contact-info {
		margin-bottom: 2rem !important;
	}
}

/* For tablets only (portrait and landscape) */
@media (min-width: 768px) and (max-width: 1024px) {
	.site-header .navbar {
		padding: 10px 0;
		height: 60px;
	}
	.logo-img {
		width: 55%;
	}
	.top-header .vr {
		margin: 4px 5px;
	}
	.menu-primary-container {
		display: none;
	}
	.top-banner {
		height: 400px;
	}
	.hero-title {
		font-size: 2.5rem;
	}
	.section-heading {
		margin-bottom: 2rem;
	}
	.section-heading .section-title {
		font-size: 40px;
	}
	.card-overlay {
		bottom: 7%;
	}
	.cta-bg-overlay {
		padding: 3em 0;
	}
	.contact-title {
		font-size: 1.1rem;
	}
	.footer-text {
		text-align: center;
	}
	.custom-footer .social-icons {
		justify-content: center !important;
		margin: 15px 0 !important;
	}


}

/* Mobile menu */
.body_overlay, .wp_mm_wrapper {
	display: none;
	visibility: hidden;
	opacity: 0;
}

/* media query */
@media (min-width: 320px) and (max-width: 1024px) {
	ul.nav-menu, .menu-primary-container {
		display: none;
	}
	#toggle-menu-container {
		position: fixed;
		top: 19px;
		right: 12px;
		width: 30px;
		z-index: 9999;
		height: 23px;
	}
	#toggle-menu {
		cursor: pointer;
		float: left;
		height: 23px;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.5s ease-in-out 0s;
		-moz-transition: all 0.5s ease-in-out 0s;
		-o-transition: all 0.5s ease-in-out 0s;
		transition: all 0.5s ease-in-out 0s;
		width: 30px;
		z-index: 9999;
	}
	#toggle-menu span {
		background-color: var(--primary-color);
		height: 3px;
		left: 0;
		position: absolute;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.25s ease-in-out 0s;
		-moz-transition: all 0.25s ease-in-out 0s;
		-o-transition: all 0.25s ease-in-out 0s;
		transition: all 0.25s ease-in-out 0s;
		width: 25px;
	}
	#toggle-menu span:nth-child(1) {
		top: 0;
	}
	#toggle-menu span:nth-child(2),
	#toggle-menu span:nth-child(3) {
		top: 11px;
	}
	#toggle-menu span:nth-child(4) {
		top: 21px;
	}
	#toggle-menu.open span:nth-child(1) {
		left: 50%;
		top: 18px;
		width: 0;
	}
	#toggle-menu.open span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#toggle-menu.open span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#toggle-menu.open span:nth-child(4) {
		left: 50%;
		top: 18px;
		width: 0;
	}
	#toggle-menu.open {
		/*background-color: #0F0;*/
	}
	body.wp_mm_enable {
		overflow: hidden;
	}
	.body_overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #000;
		z-index: 9;
		display: none;
		opacity: 0;
		transition: opacity 0.2s;
	}
	.body_overlay.enabled {
		display: block;
		opacity: .5;
		visibility: visible;
	}
	.wp_mm_wrapper {
		height: calc(100vh - 60px);
		overflow-y: scroll;
		overflow-x: hidden;
		position: fixed;
		right: -100%;
		bottom: 0;
		z-index: -9;
		width: 250px;
		background-color: var(--primary-color);
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		top: 60px;
		visibility: hidden;
		opacity: 0;
	}	
	.wp_mm_wrapper.active {
		z-index: 9;
		right: 0;
		visibility: visible;
		opacity: 1;
		display: block;
	}
	.wp_mm_wrapper.active .nav-menu {
		display: block;
		padding: 0;
		height: 100vh;
		position: relative;
		padding-bottom: 5em;
	}
	.wp_mm_wrapper ul.nav-menu li ul.sub-menu li ul.sub-menu {
		height: 100vh;
		padding-bottom: 5em;
		display: table;
	}
	.wp_mm_wrapper .nav-menu li {
		list-style-type: none;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		height: auto;
		color: #fff;
		width: 100%;
		position: unset;
		display: inline-block !important;
		margin: 0 !important;
		text-align: left;
	}
	.wp_mm_wrapper .nav-menu li.menu-item-has-children span {
		font-size: 12px;
		cursor: pointer;
		width: 30px;
		line-height: 20px;
		text-align: center;
		height: 25px;		
	}
	.wp_mm_wrapper ul > li > a, .wp_mm_wrapper .nav-menu li.menu-item-has-children > a, .wp_mm_wrapper .nav-menu li ul.sub-menu li ul.sub-menu li a {
		display: block;
		color: #fff !important;
		padding: 15px;
		letter-spacing: 1px;
		text-decoration: none;
		font-size: 14px;
		font-weight: 500;
		height: auto;
		border: none;
		margin: 0;
	}
	.wp_mm_wrapper .nav-menu a:hover, .wp_mm_wrapper .nav-menu a:focus, .wp_mm_wrapper .nav-menu a:active {
		color: var(--secondary-color) !important;
	}
	.wp_mm_wrapper .nav-menu li.menu-item-has-children>a {
		width: auto;
	}
	ul.nav-menu li.menu-item-has-children > a::after {
		display: none;
	}
	.wp_mm_wrapper ul.nav-menu li ul.sub-menu {
		background-color: var(--primary-color);
		height: 100%;
		position: absolute;
		left: -100%;
		top: 0;
		transition: all 0.5s ease 0s;
		width: 100%;
		z-index: 999;
		display: block;
		padding: 0;
		box-shadow: none;
	}
	.wp_mm_wrapper .nav-menu li.active>.sub-menu {
		left: 0;
		padding: 0;
	}
	span.forward {
		float: right;
		margin: 17px 5px 0 0;
	}
	.nav-menu li.menu-item-has-children span.left {
		float: left;
		margin: 11px 0 0 5px;
	}
	.wp_mm_wrapper ul.nav-menu li ul.sub-menu li ul.sub-menu {
		left: -200%;
	}
	.wp_mm_wrapper ul.nav-menu li ul.sub-menu li.active ul.sub-menu {
		left: 0%;
	}
	.wp_mm_wrapper .nav-menu li ul.sub-menu li.back a, .wp_mm_wrapper .nav-menu li ul.sub-menu li ul.sub-menu li.back a {
		width: auto;
		margin-left: 30px;
		color: var(--secondary-color) !important;
		padding-top: 12px;
	}

}

#menu-item-1225 {
	padding-top: 0.7em;
}


