/*
Theme Name: Indutri Child
Description: Child theme for the Indutri themes
Author: Gaviathemes
Template: indutri
*/


/* STICKY MENU */

/* default (not fixed yet) */
.elementor-section.menu_wrapper {
    position: relative;
    transition: box-shadow .2s ease, transform .2s ease;
}

/* becomes fixed after 100px scroll */
.elementor-section.menu_wrapper.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    background: #fff;
    /* solid bg so content doesn't bleed through */
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

/* push page content down when header is fixed (height set from JS) */
body.has-fixed-header {
    padding-top: var(--fixed-header-h, 0px);
}

/* WordPress admin bar offset */
body.admin-bar .elementor-section.menu_wrapper.is-fixed {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .elementor-section.menu_wrapper.is-fixed {
        top: 46px;
    }
}

/* hash links (#about, #contact) don't get hidden under the fixed bar */
[id] {
    scroll-margin-top: calc(var(--fixed-header-h, 0px));
}


/* ENDOF STICKYMENU */