.header-content {
    margin: 30px 0;
    position: relative;
}

.header-content .sub-text {
    width: 100%;
    text-align: right;
    color: #efa43b;
    font-weight: 700;
    font-size: 25px;
}

.header-content .sub-text p {
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0px 0px 25px rgba(9, 48, 63, 1);
    max-width: unset;
}

.header-content .sub-text a {
    color: #fff;
}

/* Header Logo & Nav */
.nav-content {
    --site-logo: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #fff;
    height: 85px;
    padding-right: 15px;
}

.site-logo {
    width: var(--site-logo);
    height: auto;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 90;
}

.site-logo img {
    width: 100%;
}

.nav-content .actionBtns {
    cursor: pointer;
    padding: 0.1rem 0.1rem;
    background-color: transparent;
    border: 1px solid transparent;
    gap: 10px;
    flex-direction: row;
}

.icoBtn {
    width: 40px;
    height: 40px;
    padding: 1px;
    cursor: pointer;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-family: var(--font-four);
    color: var(--header-text-color);
}
.icoBtn:hover {
    background: #00000040;
}
.icoBtn i {
    pointer-events: none;
}
#site-header .menuBtn {
    border-radius: 10%;
}
.noHero #site-header .menuBtn,
.headerBg #site-header .menuBtn {
    background: transparent !important;
    box-shadow: unset;
}
#site-header .icoBtn {
    width: 35px;
    height: 35px;
    font-size: 25px;
}
.menuCloseBtn {
    color: #000;
}

.nav-content .nav-box{
    border-radius: 10px;
    width: 100%;
    position: relative;
    background-color: #fff;
    z-index: 10;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    width: 300px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding: 0 10px;
}
.nav-content .nav-box.active {
    right: 0px;
}
.nav-content nav {
    position: relative;
    width: 100%;
}

#nav>ul,
.nav-items {
    padding: 15px 25px;
    background-color: #fff;
    color: #000;
    list-style: none;
    display: flex;
    gap: 10px 50px;
    align-items: center;
    border-radius: 10px;
    width: calc(100%);
    float: right;
    justify-content: right;
    flex-direction: column;
}

#nav>ul li,
.nav-items li {
    position: initial;
}

#nav>ul a,
.nav-items a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1px;
}
#nav>ul a:hover,
.nav-items a:hover {
    color: var(--theme-clr);
}
.nav-items li ul.sub-menu {
    z-index: 80;
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    background-color: #fff;
    z-index: 80;
    border-radius: 15px;
    padding: 50px 30px 30px;
    list-style: none;
    visibility: hidden;
}
.menu-item-has-children .bx {
    display: none;
}
.nav-items li ul.sub-menu.open {
    display: block;
    visibility: visible;
}

@media screen and (min-width: 999px) {
    .nav-content {
        --site-logo: 180px;
        position: unset;
        background-color: transparent;
        height: unset;
        padding-right: 0px;
    }

    .site-logo {
        position: absolute;
        top: 10px;
        left: 40px;
    }
    .nav-content .nav-box {
        background-color: transparent;
        position: unset;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .nav-content nav {
        flex: 1;
        width: unset;
        position: initial;
    }
    #nav>ul,
    .nav-items {
        width: calc(100% - var(--site-logo) + 40px);
        flex-direction: row;
    }

    #site-header .menuBtn {
        display: none;
    }
    .nav-content .nav-actionBtns {
        display: none;
    }
}

/* Progress */
#site-header .progress {
    position: relative;
}
.progress .progress-title {
    width: 100%;
    text-align: center;
    font-weight: 700;
}
.progress .progress-bars {
    --progress-height: 80px;
    --left-bar: 40%%;
    height: var(--progress-height);
    background: url(../img/progress-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.progress-bars .bar {
    height: calc(var(--progress-height) / 2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 72%;
    color: #fff;
    text-transform: uppercase;
}
.bar>div {
    width: var(--left-bar);
    display: flex;
    gap: 0px 17px;
    justify-content: space-between;
}
.bar>.right {
    width: calc(100% - var(--left-bar));
}
.bar .bar-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bar .bar-texts>span {
    display: block;
}

@media screen and (min-width: 950px) {
    .progress .progress-bars {
        --progress-height: 120px;
        --left-bar: 26%;
        background-size: contain;
    }

    .progress-bars .bar {
        font-size: 70%;
        padding: 0 5px;
    }

    .bar>div {
        width: var(--left-bar);
    }

    .bar>.right {
        width: var(--left-bar);
    }
}