/*
	Theme Name: Hello Elementor Child
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.5
	Stable tag: 3.4.5
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

:root {
	--ThColor: #467FF7;
	--ThTextColor: #324A6D;
}

/* Projects on start page */

.projectsContainer {
	margin-top: 2em;
}

.singleProject {
	display: flex;
	flex-direction: row;
	gap: 2em;
	margin-bottom: 1.5em;
}

.projectImg {
	min-width: 50%;
	min-height: 500px;
	max-width: 50%;
	max-height: 500px;
	overflow: hidden;
}

.projectImg img {
	object-fit: cover;
	width: 100%;
	height: auto;
	min-width: 100%;
	min-height: 500px;
	max-width: 100%;
	max-height: 500px;
}

.projectTextContent {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

@media only screen and (max-width: 1600px) {
	.projectsContainer {
		width: 90%;
		margin: auto;
	}
}

@media only screen and (max-width: 1024px) {
	.projectsContainer {
		justify-items: center;
		width: 100%;
	}

	.singleProject {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 90%;
		gap: 0;
	}

	.projectImg {
		min-width: 100%;
		max-width: 100%;
		min-height: 50%;
		max-height: 50%;
	}

	.projectTitle {
		text-align: center;
	}
}

@media only screen and (max-width: 400px) { 
	.projectImg img {	
		min-height: 250px;
		max-height: 250px;
	}
}

/*****************/
/* Menu styling */
/***************/

.site-navigation-toggle-holder.secondary-menu {
	position: relative;
	margin-top: 1em;
	display: block !important;
	visibility: visible !important;
	padding: 0;
}

/* Override parent theme responsive hiding for secondary menu */
.site-navigation-toggle-holder.secondary-menu {
	display: flex !important;
	visibility: visible !important;
	width: 100%;
}

@media (min-width: 576px) {
	.site-navigation-toggle-holder.secondary-menu {
		display: flex !important;
		visibility: visible !important;
	}
}

@media (min-width: 768px) {
	.site-navigation-toggle-holder.secondary-menu {
		display: flex !important;
		visibility: visible !important;
	}
}

@media (min-width: 992px) {
	.site-navigation-toggle-holder.secondary-menu {
		display: flex !important;
		visibility: visible !important;
	}
}

@media (min-width: 1200px) {
	.site-navigation-toggle-holder.secondary-menu {
		display: flex !important;
		visibility: visible !important;
	}
}

.secondary-menu-toggle {
	background: none;
	border: 2px solid #467FF7;
	padding: 0.75em;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.3s ease;
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.secondary-menu-toggle:hover,
.secondary-menu-toggle:focus {
	/*background-color: #467FF7;*/
	color: white;
}

.secondary-menu-toggle .site-navigation-toggle-icon {
	display: block;
	width: 24px;
	height: 3px;
	background-color: currentColor;
	position: relative;
	transition: all 0.3s ease;
	margin: 10px 0;
}

.secondary-menu-toggle .site-navigation-toggle-icon::before,
.secondary-menu-toggle .site-navigation-toggle-icon::after {
	content: '';
	display: block;
	width: 24px;
	height: 3px;
	background-color: currentColor;
	position: absolute;
	transition: all 0.3s ease;
	left: 0;
}

.secondary-menu-toggle .site-navigation-toggle-icon::before {
	top: -6px;
}

.secondary-menu-toggle .site-navigation-toggle-icon::after {
	top: 6px;
}

/* Animate burger icon when active */
.site-navigation-toggle-holder.secondary-menu.elementor-active .secondary-menu-toggle .site-navigation-toggle-icon {
	background-color: transparent;
}

.site-navigation-toggle-holder.secondary-menu.elementor-active .secondary-menu-toggle .site-navigation-toggle-icon::before {
	transform: rotate(45deg);
	top: 0;
}

.site-navigation-toggle-holder.secondary-menu.elementor-active .secondary-menu-toggle .site-navigation-toggle-icon::after {
	transform: rotate(-45deg);
	top: 0;
}

/* Secondary menu dropdown styles */
.secondary-menu-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	min-width: 200px;
	margin-top: 0.5em;
	visibility: visible !important;
}

.secondary-menu-dropdown.elementor-active {
	display: block !important;
}

.secondary-menu-dropdown .main-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.secondary-menu-dropdown .main-menu li {
	border-bottom: 1px solid #eee;
}

.secondary-menu-dropdown .main-menu li:last-child {
	border-bottom: none;
}

.secondary-menu-dropdown .main-menu a {
	display: block;
	padding: 0.75em 1em;
	text-decoration: none;
	color: #333;
	transition: background-color 0.3s ease;
}

.secondary-menu-dropdown .main-menu a:hover,
.secondary-menu-dropdown .main-menu a:focus {
	color: black;
}

/* Submenu styles for secondary menu */
.menu-item a {
    margin-left: 1em;
    padding-left: 2em;
    display: inline-block;
}

.secondary-menu-dropdown .menu-item-has-children > .sub-menu {
	display: none;
	padding-left: 1em;
}

.secondary-menu-dropdown .menu-item-has-children.elementor-active > .sub-menu {
	display: block;
}

.sub-menu {
    padding-left: 3em !important;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children::before{
    content: "";
    border: solid black;
    display: inline-block;
    border-width: 0 3px 3px 0;
    /*padding: 3px;*/
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 10px;
    height: 10px;
    position: absolute;
    top: 20px;
    right: 0;
    left: 10px;
}

.menu-item-has-children.elementor-active::before {
    content: "";
    border: solid black;
    display: inline-block;
    border-width: 0 3px 3px 0;
    /*padding: 3px;*/
    width: 10px;
    height: 10px;
    position: absolute;
    top: 15px;
    left: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}



/* Force secondary menu to always be visible regardless of parent theme settings */
.site-header .site-navigation-toggle-holder.secondary-menu,
.site-header.menu-dropdown-mobile .site-navigation-toggle-holder.secondary-menu,
.site-header.menu-dropdown-tablet .site-navigation-toggle-holder.secondary-menu,
.site-header.menu-dropdown-none .site-navigation-toggle-holder.secondary-menu {
	display: flex !important;
	visibility: visible !important;
}

.site-header .secondary-menu-dropdown,
.site-header.menu-dropdown-mobile .secondary-menu-dropdown,
.site-header.menu-dropdown-tablet .secondary-menu-dropdown,
.site-header.menu-dropdown-none .secondary-menu-dropdown {
	visibility: visible !important;
}

.main-menu {
	background: white;
}

.header-menu-container {
	display: flex;
	flex-direction: row;
	gap: 1;
	align-items: center;
	align-content: center;
}

.header-menu-list {
	list-style: none;
	padding: 0;
}

.header-menu-list li {
	display: inline-block;
	margin-right: 1em;
}

.header-menu-list a {
 	color: #E6E6E6;
 	text-decoration: none;
}

.elementor-kit-13 a:hover {
    color: white;
    font-weight: 600;
}

@media (max-width: 575px) {
	.site-navigation-toggle-holder.secondary-menu  {
		padding-inline-end: 10px;
    	padding-inline-start: 10px;
	}
}

@media (max-width: 768px) {
	.header-menu-container {
		
	}
}