/* ### HEADER ### */

/*header#header,*/
header#header .header-navbar-brand .title,
header#header .header-navbar-brand img,
header#header .header-navbar{
    transition: .5s ease-out;
}
header#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 95px;
    z-index: 9999;
    transition: backdrop-filter .5s ease-out, background .5s ease-out, height .5s ease-out;
    backdrop-filter: blur(0px);
    background: linear-gradient(180deg, #303030 0%, transparent 90%);
    opacity:0;
}
header#header.sticky {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, .7);
    height: 75px;
}
header#header .header-inner-container{
    display: grid;
    grid-template-columns: fit-content(400px) 1fr;
    grid-gap: 10px;
    align-items: center;
    height: 100%;
    max-width: 2000px;
    padding: 0;
}
header#header .header-navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    z-index: 9999;
    padding-left: 30px;
}
header#header .header-navbar-brand .title{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    font-family: 'im-fell';
    font-size: 18px;
    text-transform: uppercase;
    padding-left: 10px;
    padding-top: 8px;
    font-weight: 400;
    line-height: 1.1;
    height: 100%;
}
header#header .header-navbar-brand:hover .title{
    color: var(--blue-color);
}
header#header .header-navbar-brand .title span{
    margin-left: 2px;
    font-size: 14px;
}
header#header.sticky .header-navbar-brand .title{
    color: rgb(8, 8, 8);
}
header#header .header-navbar-brand .header-logo-container{
    position: relative;
    width: 120px;
    height: 49px;
}
header#header .header-navbar-brand img{
    
}
header#header .header-navbar-brand img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
header#header .header-navbar-brand img.white{
    opacity: 1;
    transition: opacity .5s ease-out;
}
header#header .header-navbar-brand img.black{
    opacity: 0;
    transition: opacity .5s ease-out;
}
header#header.sticky .header-navbar-brand img.white{
    opacity: 0;
}
header#header.sticky .header-navbar-brand img.black{
    opacity: 1;
}
header#header img.logo-brand {
    display: block;
    width: auto;
    height: inherit;
    padding: 5px 0;
}
header#header .header-navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.7);
    z-index: 2;
}
header#header .header-navbar {
    height: 100%;
    padding-right: 400px;
    padding-top: 34px;
    position: relative;
    z-index: 9999;
}
header#header .header-navbar #menu-menu-principal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position:relative;
}
header#header .header-navbar #menu-menu-principal > li {
    position: relative;
    text-align: center;
    z-index: 3;
}
header#header .header-navbar #menu-menu-principal > li a{
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    line-height: 1em;
    position: relative;
    padding: 10px 15px;
    font-family:im-fell;
    transition: .5s;
    position: relative;
}
header#header.sticky .header-navbar #menu-menu-principal > li a{
    color: #000;
}
header#header .header-navbar #menu-menu-principal > li a::after{
    /* content: ''; */
    position: absolute;
    top: 48%;
    transform: translate(0, -50%);
    right: 0;
    width: 1px;
    height: 60%;
    background-color: #fff;
    transition: .2s;
}
header#header .header-navbar #menu-menu-principal > li:last-of-type > a::after{
    display: none;
}
header#header .header-navbar #menu-menu-principal > li a:hover{
    color:var(--blue-color);
}
header#header.sticky .header-navbar #menu-menu-principal > li a:hover{
    color:var(--blue-color);
}
header#header .header-navbar #menu-menu-principal > li a.active {
    color: var(--pink-color)!important;
}
header#header.sticky .header-navbar #menu-menu-principal > li a:after {
    background-color: rgb(8, 8, 8);
}
body.admin-bar .header-nabar-language{
    top: 30px;
}
.header-nabar-language{
    position: fixed;
    z-index: 9999;
    top: -2px;
    right: 0;
    display: flex;
    justify-content: end;
    opacity: 0;
    transition: .5 ease-out;
}
.header-nabar-language-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
    padding-top: 12px;
}
.header-nabar-language a, 
.header-nabar-language .choose-language {
    text-align: end;
    padding-right: 20px;
    text-transform: uppercase;
    font-size: 10px;
    color: #fff;
    font-family: 'im-fell';
}
header#header.sticky + .header-nabar-language .choose-language {
    color:#080808;
}
.header-nabar-language .choose-language{
    padding: 2px 0;
    padding-right: 20px;
    position: relative;
    margin-bottom: 2px;
    transition: .5s;
}
.header-nabar-language .choose-language:after,
.header-nabar-language .choose-language:before{
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% + 5px);
    height: 90%;
    background-color: aqua;
    width: 1px;
}
.header-nabar-language .choose-language:after{
    right: calc(100% + 11px);
    top: -1px;
}

.header-nabar-language a{
    position: relative;
    z-index: 2;
}
.header-nabar-language .link-container:before,
.header-nabar-language .link-container-inner:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .3s ease-out;
}
.header-nabar-language .link-container:before{
    opacity: 1;
    background-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgb(53, 53, 53) 25%, rgb(53, 53, 53) 100%);
}
.header-nabar-language .link-container-inner:before{
    opacity: 0;
    background-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgb(189, 60, 142) 25%, rgb(189, 60, 142) 100%);
    z-index: 1;
}
.header-nabar-language > a:first-of-type,
.header-nabar-language .link-container{
    position: relative;
    padding-left: 80px;
    padding-top: 2px;
    padding-bottom: 0px;
}
.header-nabar-language .link-container:hover:before{
    opacity: 0;
}
.header-nabar-language .link-container:hover .link-container-inner:before{
    opacity: 1;
}

header#header .navbar-active-menu-indicator {
    display: none;
    position: absolute;
    bottom: 85%;
    left: 50%;
    width: 50px;
    transform: translate(-50%, 0);
}
header#header .navbar-active-menu-indicator svg{
    position: absolute;
    bottom: 85%;
    left: 50%;
    width: 50px;
    transform: translate(-50%, 0);
}
header#header .navbar-active-menu-indicator svg:nth-of-type(1){
    display: block;
}
header#header .navbar-active-menu-indicator svg:nth-of-type(2){
    display: none;
}

/* ### BURGER MENU ### */
header#header .header-navbar-toggler {
    display: none;
    position: relative;
    justify-content: end;
    align-items: center;
    z-index: 999999;
    padding-right: 20px;
    padding-top: 10px;
}
header#header .header-navbar-toggler span{
    font-size: 14px;
    color: #fff;
    padding:6px 10px 1px 10px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    border: 1px solid #fff;
    transition: .5s ease-out;
}
header#header.sticky .header-navbar-toggler{
    padding-top: 0;
}

header#header.sticky .header-navbar-toggler span{
    border: 1px solid var(--default-text-color);
    color: var(--default-text-color);
}

header#header .header-navbar.active + .header-navbar-toggler span{
    border: 1px solid #fff;
    color: #fff;
}

/* ### FOOTER ### */
footer#footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    text-align: center;
    color: #fff;
    background-color: var(--default-text-color);
}