/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/*
 * Main Menu
 */
.main-menu .e-n-menu-item:hover .e-n-menu-title-text {
	color: #0050FF;
	cursor: pointer;
}

/*
 * Mega Menu
 */
.mega-menu .mega-menu__item:hover {
	cursor: pointer;
}

.mega-menu .mega-menu__item:hover .elementor-widget-heading:first-child .elementor-heading-title {
	color: #0050FF;
}

/*
 * Language Switcher
 */
@media (min-width: 768px) {
	.cpel-switcher--layout-dropdown .cpel-switcher__lang {
    	width: 167px ! important;
	}
}

.cpel-switcher__toggle.cpel-switcher__lang {
	padding-bottom: 14px;
}

@media (min-width: 768px) {
	.cpel-switcher__toggle.cpel-switcher__lang {
		padding-bottom: 14px;
	}
}

.cpel-switcher__list {
	padding: 0px;
	background: rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.12);
	border-radius: 10px;
}

.cpel-switcher--layout-dropdown .cpel-switcher__lang {
	padding: 16px;
}

.cpel-switcher__lang a:hover {
	text-decoration: none ! important;
	color: #0050FF ! important;
}

/*
 * Hero Product Card
 */
.hero-product-card:hover {
	cursor: pointer;
}

.hero-product-card .elementor-widget-text-editor {
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-product-card:hover .elementor-widget-text-editor {
    -webkit-line-clamp: unset;
}

/*
 * FAQ block
 */
.faq details.e-n-accordion-item {
	background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 1px 1px rgba(16, 24, 40, 0.04), 0 4px 10px rgba(16, 24, 40, 0.06);
    transition: all .25s ease;
}

.faq .e-n-accordion-item-title[aria-expanded="true"] .e-n-accordion-item-title-header .e-n-accordion-item-title-text {
	color: #0050FF;
}

/*
 * Darkening page content after opening the Mega menu
 */	
/* Overlay that does NOT affect the Header */
body.elementor-mega-menu-open::before {
    content: "";
    position: fixed;
    /* sterted after header + admin bar */
    top: var(--mega-header-offset, 0px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.45);   /* eclipse */
    backdrop-filter: blur(4px);    /* can be removed or changed */
    z-index: 998;
    pointer-events: none;
    transition: opacity .25s ease;
}

/* the menu should be above the overlay */
.e-n-menu-wrapper {
    position: relative;
    z-index: 999;
}

/**
 * Footer 
 */
.footer .footer__offices--widget a {
	text-decoration: none;
}