:root {
    --primary: #ff9800;
    --white: #fff;
    --light-grey: #f0f0f0;
    --base: #60697b;
    --box-shadow: 0rem 0rem 1.25rem rgba(30, 34, 40, 0.06);
    --fs-md: 0.8rem;
    --fs-sm: 0.7rem;
    --fs-xs: 0.6rem;
}

a.orange-pill {
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 0.4rem 1rem;
    transition: all .2s;
}
a.orange-pill:hover {
    color: var(--white) !important;
    scale: 1.05;
}

body {
    height: auto;
    padding-top: 100px;
}

header {
    position: fixed !important;
    width: 100%;
    top: 0px;
    background: var(--white);
    display: flex;
    align-items: center;
    height: 100px;
    padding: 0 1rem;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: var(--box-shadow);
}

header .header-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    background-color: inherit;
}

header .header-menu .main-menu {
    display: flex;
    gap: 0.5rem 1rem;
    background-color: inherit;
}

.header-menu a {
    color: var(--base);
}
.header-menu a:hover {
    color: var(--primary);
}

.item-sub-menu{
    background-color: inherit;
}

.item-sub-menu::after {
    font-family: Unicons;
    display: inline-block;
    margin-left: .05rem;
    vertical-align: -3px;
    font-weight: 700 !important;
    border: 0;
    content: "\e92d";
    color: var(--primary);
    position: relative;
}

.item-sub-menu > .sub-menu {
    background-color: inherit;
    position: absolute;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    padding: 0.5rem 1rem;
    margin: 0 -1rem;
    box-shadow: var(--box-shadow);
    font-size: var(--fs-sm);
    transition: all .25s ease-in-out;
}

.item-sub-menu:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
}

.mobile-toggler {
    display: none;
    cursor: pointer;
}

@media (max-width: 991px) {
    header {
        flex-wrap: wrap;
        justify-content: space-between;
        position: sticky;
    }
    
    .mobile-toggler {
        display: block;
    }

    header.open {
        background: var(--light-grey);
    }

    header.open .header-menu {
        visibility: visible;
        opacity: 1;
    }

    .header-menu {
        position: absolute;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        align-items: start !important;
        gap: 0.5rem 0;
        top: 70px;
        left: 0px;
        padding: 1rem;
        transition: all 0.3s;
    }
    .main-menu {
        flex-direction: column;
        align-items: start;
    }

    .item-sub-menu > .sub-menu {
        position: relative;
        visibility: inherit;
        opacity: inherit;
        padding: 0 2rem;
        margin: 0 -1rem;
        box-shadow: none;
        transition: none;
    }

    .item-sub-menu::after {
        display: none;
    }
}