/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

#menu-main-menu {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}
#menu-main-menu .sub-menu {
    display: none;
}
#menu-main-menu > li > a {
    text-transform: uppercase;
    font-size: 14px;
}
#menu-main-menu li a {
    color: #000000;
    font-size: 18px;
    position: relative;
    text-transform: capitalize;
}
#menu-main-menu > li.menu-item-has-children:hover .sub-menu {
    display: block;
}
#menu-main-menu > li.menu-item-has-children .sub-menu {
    position: absolute;
    list-style-type: none;
    font-size: 16px;
    padding: 10px 15px;
    background-color: #FFFFFF;
    z-index: 1;
}
ul.custom-nav-links {
    list-style-type: none;
    display: flex;
    gap: 10px;
    padding-left: 0;
}
.btn-contact-btn {
    background-color: #cd1f40;
    color: #FFFFFF;
    padding: 10px 30px;
    border-radius: 25px;
}
.custom-nav-links .btn-contact-btn:hover {
    color: #FFFFFF;
}
#menu-main-menu > li.menu-item-has-children > a:after {
    content: "▼";
    font-size: 10px;
    position: relative;
    top: -1px;
    right: -2px;
}
.custom-nav-links .btn-contact-btn {
    font-size: 16px;
}
.mobile-menu-icon {
    display: none;
}
@media only screen and (max-width : 1024px) {
    .mobile-menu-icon {
        display: block;
    }
    .menu-main-menu-container {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 100%;
        width: 300px;
        background-color: #FFF;
        z-index: 1;
        transform: translateX(-300px);
        transition: transform 2s ease-in-out;
    }
    #menu-main-menu {
        flex-direction: column;
        padding: 25px 20px;
    }
    .menu-main-menu-container.active {
        transform: translateX(0px);
    }
}