/* 
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 */

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

:root {
    --primary-color: #FFAF00;
    --section-tracker-inactive-color: #a6a5a5;
}

.sus-section-tracker {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sus-section-tracker .sus-section-track {
    /* width: 52px; */
    width: 83px;
    height: 3px;
    transform: translateX(31px);

    cursor: pointer;

    background-color: var(--section-tracker-inactive-color);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

.sus-section-tracker .sus-section-track.active {
    transform: translateX(0);
    background-color: var(--primary-color);
}

@media screen and (max-width: 991px) {
    .sus-section-tracker {
        display: none;
    }
}

/* @media screen and (min-width: 1025px) {
    .elementor-column .elementor-widget-nav-menu {
        display: block !important;
    }
} */

.elementor-element ul:not(.elementor-nav-menu) {
	padding-left: 15px;
}
.elementor-element ul:not(.elementor-nav-menu) li {
	list-style: none;
    position: relative;
    padding-left: 10px;
}

.elementor-element ul:not(.elementor-nav-menu) li::marker {
    color: #FFA500;
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	font-size: inherit;
    left: 0px;
    position: absolute;
}

body > header > header {
  width: 100vw !important;
}

body > header > header:nth-child(1) {
	visibility: hidden !important;
}

body > header > header:nth-child(2) {
	visibility: hidden !important;
}

body > header > header:nth-child(3) {
	visibility: visible !important;
}

body > header > header:nth-child(4) {
	visibility: hidden !important;
}