.header-container{
    width: 100%;
    position: sticky;
    top: var(--wp-admin--admin-bar--height, 0);
    left: 0;
    background: #1e235a;
    z-index: 99;
}
.header-container-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.header-contact-bar{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*height: 3.125rem;*/
    padding: 0.625rem 0;
    background: #ffffff;
    overflow: hidden;
    /*animation: headerContactBarHeightIncrease linear 0.1s;*/
}
.header-contact-bar-wrap{
    width: 75rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-contact-bar-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-contact-bar-left-item{
    font-size: 0.875rem;
    margin-right: 1.25rem;
}
.header-contact-bar-left-item a{
    color: rgb(233, 81, 29);
    text-decoration: none;
}
.header-contact-bar-right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-contact-bar-social-medias{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 1.25rem;
}
.header-contact-bar-social-media{
    width: 1.75rem;
    height: 1.75rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.875rem;
    background: #1e235a;
    margin-right: 0.625rem;
}
.header-contact-bar-social-media:last-of-type{
    margin-right: 0;
}
.header-contact-bar-social-media-icon{
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-contact-bar-social-media-icon-img{
    width: 1.125rem;
    height: 1.125rem;
    object-fit: contain;
}
.header-nav-bar{
    width: 75rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}
.header-nav-bar-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 2.5rem;
}
.header-nav-brand-logo{
    height: 4.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation: headerLogoHeightIncrease linear 0.1s;
}
.header-nav-brand-logo-img{
    height: 4.25rem;
    object-fit: contain;
    filter: brightness(1000%) grayscale(100%);
    animation: headerLogoHeightIncrease linear 0.1s;
}
.header-nav-menu{
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-nav-menu-item{
    padding-right: 1.25rem;
}
.header-nav-menu-item-info{
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}
.header-nav-menu-item-title{
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}
.header-nav-menu-item-icon{
    margin-left: 0.625rem;
    width: 1rem;
    height: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
@keyframes headerNavMenuIconRotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(180deg);
    }
}
@keyframes headerNavMenuIconRotateReverse {
    0%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
.header-nav-menu-item-icon-img{
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    transform: rotateZ(0deg);
    animation: headerNavMenuIconRotateReverse ease-in-out 0.3s;
}
.header-nav-bar-right{
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-nav-bar-right-icon{
    height: 4.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation: headerLogoHeightIncrease linear 0.1s;
}
.header-nav-bar-right-icon-img{
    height: 4.25rem;
    object-fit: contain;
    animation: headerLogoHeightIncrease linear 0.1s;
}

.header-nav-menu-item-open .header-nav-sub-menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header-nav-menu-item-open .header-nav-menu-item-icon-img{
     transform: rotateZ(180deg);
     animation: headerNavMenuIconRotate ease-in-out 0.3s;
}
.header-nav-menu-item-active .header-nav-menu-item-title, .header-nav-menu-item-open .header-nav-menu-item-title{
    color: #e9511d;
}
.header-nav-sub-menu{
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e235a;
    border-top: #eeeeee solid 1px;
}
.header-nav-sub-menu-wrap{
    width: 75rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 0;
}
.header-nav-sub-menu-left{
    width: 28.125rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.header-nav-sub-menu-left-poster{
    width: 28.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-nav-sub-menu-left-poster-img{
    width: 28.125rem;
    height: 11.875rem;
    object-fit: cover;
    border-radius: 0.625rem;
}
.header-nav-sub-menu-left-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 2.5rem;
}
.header-nav-sub-menu-left-title{
    width: 100%;
    text-align: left;
    font-size: 1.875rem;
    color: #ffffff;
}
.header-nav-sub-menu-left-description{
    width: 100%;
    font-size: 1rem;
    padding-top: 0.625rem;
    text-align: left;
    color: #ffffff;
}
.header-nav-sub-menu-right{
    flex: 1;
    padding-left: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.header-nav-sub-menu-group{
    width: 18.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 20rem;
}
.header-nav-sub-menu-group:last-of-type{
    margin-right: 0;
}
.header-nav-sub-menu-item{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding-bottom: 0.375rem;
    margin-bottom: 0.625rem;
    border-bottom: rgba(0,0,0,0) solid 1px;
    margin-right: 2.5rem;
}
.header-nav-sub-menu-item-active, .header-nav-sub-menu-item:hover{
    border-bottom: #ffffff solid 1px;
}
.header-nav-sub-menu-item:last-of-type{
    margin-bottom: 0;
}
.header-nav-sub-menu-item-title{
    flex: 1;
    text-align: left;
    font-size: 1rem;
    color: #ffffff;
}
.header-nav-sub-menu-item-icon{
    width: 0.75rem;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-nav-sub-menu-item-icon-img{
    width: 0.75rem;
    object-fit: contain;
}
.header-nav-sub-menu-item-active .header-nav-sub-menu-item-icon,
.header-nav-sub-menu-item:hover .header-nav-sub-menu-item-icon{
    display: flex;
}
@keyframes headerContactBarHeightIncrease {
    0%{
        height: 0;
    }
    100%{
        height: 3.125rem;
    }
}
@keyframes headerContactBarHeightDecrease {
    0%{
        height: 3.125rem;
    }
    100%{
        height: 0;
    }
}
.header-container-mini .header-contact-bar{
    display: none;
    /*animation: headerContactBarHeightDecrease linear 0.1s;*/
}
@keyframes headerLogoHeightDecrease {
    0%{
        height: 4.25rem;
    }
    100%{
        height: 2.75rem;
    }
}
@keyframes headerLogoHeightIncrease {
    0%{
        height: 2.75rem;
    }
    100%{
        height: 4.25rem;
    }
}
.header-container-mini .header-nav-brand-logo,
.header-container-mini .header-nav-brand-logo-img{
    height: 2.75rem;
    animation: headerLogoHeightDecrease linear 0.1s;
}
.header-container-mini .header-nav-bar-right-icon,
.header-container-mini .header-nav-bar-right-icon-img{
    height: 2.75rem;
    animation: headerLogoHeightDecrease linear 0.1s;
}