/*
Theme Name:Child Theme for Divi
Theme URI: https://wp-ninja.net
Description: Child Theme For Divi
Author: Eduard Ungureanu
Author URI: https://wp-ninja.net
Template: Divi
*/

/* Start your custom CSS bellow this comment
============================================ */
.header-desktop-logo {
	width: 19%
}

footer ul li::marker {
	color: #fff !important;
	font-size: 20px;
	line-height: 24px;
}

ul li::marker {
	color: #000;
	font-size: 20px;
	line-height: 24px;
}

.et_mobile_menu {
	left: calc(100% - 300px);
	width: 300px;
}

/*-- a:hover {
	color: var(--accent) !important;
}
-- */

/* Active child menu item */
.current-menu-item > a,
.footer-list > a {
	text-decoration: underline var(--accent);
	text-underline-offset: 9px;
	text-decoration-thickness: 2px;
}

/* Parent menu item when any child is active */
.current-menu-ancestor > a,
.current_page_parent > a {
	text-decoration: underline var(--accent);
	text-underline-offset: 9px;
	text-decoration-thickness: 2px;
}

.menu-item > a:hover,
.footer-list > a:hover {
	color: #fff !important;
	text-decoration: underline var(--accent) !important;
	text-underline-offset: 9px;
	text-decoration-thickness: 2px !important;
}

/* Remove underline from parent if it's also the current menu item 
   (so child gets priority) */
.current-menu-ancestor.current-menu-item > a {
	text-decoration: none;
}


body .et_pb_button {
	text-transform: capitalize !important;
}

.owl-carousel .owl-stage {
	display: flex;
	align-items: center;
	transition-timing-function: linear !important;
	/* Smooth scroll */
}

.owl-carousel .owl-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.owl-carousel .owl-item .et_pb_column {
	width: 230px;
	display: block;
	margin: 0 auto;
}

.owl-carousel .owl-item .et_pb_image {
	display: flex;
	justify-content: center;
}

.book-free-demo-mobile .et_pb_button_module_wrapper {
	width: 170px;
}

@media (min-width: 981px) and (max-width: 1280px) {
	h1 {
		font-size: 42px !important;
	}
}

@media (min-width: 768px) and (max-width: 860px) {
	.main-menu .et_pb_row_1_tb_header {
		flex-wrap: nowrap !important;
	}

	/* .main-menu .et_pb_column {
        width: 25% !important;
  } */

	.main-menu a {
		font-size: 16px !important;
	}

	.service-home .et_pb_column {
		width: 100% !important;
	}

	.approach-section {
		width: 100% !important;
	}

	.approach-main .et_pb_column {
		width: 100% !important;
	}

	.office-clean-main {
		width: 100% !important;
	}

	.jan-service-wrp .et_pb_column {
		width: 100% !important;
	}

	.jan-service2-wrp .et_pb_column {
		width: 100% !important;
	}
}


/* Nirav style */

/* ACCENT COLOR SYSTEM Color: #008B8B*/
:root {
	--accent: #008B8B;
	--accent-rgb: 6, 182, 212;
}

/* TEXT */
.accent-text {
	color: var(--accent) !important;
}

.accent-text-hover:hover {
	color: var(--accent) !important;
}


/* BACKGROUND */
.accent-bg {
	background-color: var(--accent) !important;
	color: #ffffff;
}

.accent-bg-light {
	background-color: rgba(var(--accent-rgb), 0.1) !important;
}

.accent-bg-hover:hover {
	background-color: var(--accent) !important;
	color: #ffffff;
}


/* BORDER */
.accent-border {
	border: 2px solid var(--accent) !important;
}

.accent-border-top {
	border-top: 3px solid var(--accent) !important;
}


/* BUTTON STYLE */
body #page-container .et_pb_button {
	padding-top: 10px !important;
	padding-right: 30px !important;
	padding-bottom: 10px !important;
	padding-left: 30px !important;
}

body #page-container .et_pb_section .accent-btn.et_pb_button,
body #page-container .et_pb_section .et_pb_pricing_table_button,
.frm_button_submit {
	background-color: var(--accent) !important;
	color: #ffffff !important;
	border-color: var(--accent) !important;
	transition: all 0.3s ease !important;
}

body #page-container .et_pb_section .accent-btn.et_pb_button:hover,
body #page-container .et_pb_section .et_pb_pricing_table_button:hover,
.frm_button_submit:hover {
	background-color: #fff !important;
	border-color: var(--accent) !important;
	color: var(--accent) !important;
}


/* Outline Button */
body #page-container .et_pb_section .accent-btn-outline.et_pb_button,
body #page-container .et_pb_section .cta-section .et_pb_button.et_pb_promo_button {
	background: #fff;
	color: var(--accent) !important;
	border-color: var(--accent) !important;
	transition: all 0.3s ease !important;
}

body #page-container .et_pb_section .accent-btn-outline.et_pb_button:hover,
body #page-container .et_pb_section .cta-section .et_pb_button.et_pb_promo_button:hover {
	background-color: var(--accent) !important;
	color: #ffffff !important;
}

/* ICONS (FontAwesome / Divi Icons) */
.accent-icon i,
.accent-icon .et-pb-icon {
	color: var(--accent) !important;
}


/* LINKS */

.accent-link {
	color: var(--accent);
	text-decoration: none;
	position: relative;
}

.accent-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

.accent-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* SHADOW */
.accent-shadow {
	box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.25);
}

.frm_forms a {
	color: #000000;
}

.frm_forms a:hover {
	color: var(--accent);
}