/* Desktop Styles */

.header-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 576px) {
    .header-section {
        height: 300px !important;
    }
}

.header-section .header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

.header-section .header-button-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.header-section .header-button-container .header-button {
    border-radius: 0;
    padding: 12px 32px;
}

.header-section .header-button-container .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    width: 45px;
}


.header-section #mobile-sub-menu-button {
    display: none;
    width: 100%;
    text-align: center;
    padding: 10px;
}

@media only screen and (max-width: 576px) {
    .header-section #mobile-sub-menu-button {
        display: block;
    }

}


.header-section #header-nav-wrapper {
    width: 100%;
    transition: none;
    position: static;
}


@media only screen and (max-width: 576px) {
    .header-section #header-nav-wrapper {
        position: absolute;
        bottom: 0px;
        transform: translateY(100%);
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        transition: all .2s;
    }

}



.header-section .header-nav-items {
    display: flex;
    justify-content: stretch;
    width: 100%;
    border-top-width: 2px;
    border-top-style: solid;
    flex-direction: row;
    height: auto;
}

@media only screen and (max-width: 576px) {
    .header-section .header-nav-items {
        flex-direction: column;
    }
}



.header-section .header-nav-items .header-nav-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-right-width: 1px;
    border-right-style: solid;
}

.header-section .header-nav-items .header-nav-item.active-nav-item {
    pointer-events: none;
}

.header-section .header-nav-items .header-nav-item:last-child {
    border: none;
}


.header-section .header-nav-items .header-nav-item .header-nav-text {
    width: auto;
}

.header-section .header-nav-items .header-nav-item .header-nav-text .header-nav-title {
    margin-bottom: -5px;
    text-align: center;
    display: inline-block;
}