/* HEADER */

.header{
    position: relative;
    background: #000;
    color: #fff;
    font-weight: bolder;
    width: 100%;
    height: 75px;
    border-bottom: solid 3px #ff0000;
    transition: all ease 1s;
}

.header-fixed{
    position: fixed;
    top: -70px;
    left: 0px;
    width: 100%;
    z-index: 99999;
}

.header-fixed-visible{
    top: 0px;
}


.header-nav{
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.header-nav-logo-container{
    display: flex;
    align-self: center;
    padding: 0px 60px;

}

.header-nav-logo-container img{
    position: relative;
    top: 10px;
    width: 200px;
}

.header-nav-main-ul-left{
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0px;
    width: 60%;
}

.header-nav-main-ul-left li{
    width: 100%;
    height: 100%;
    text-align: center;

}

.header-nav-main-ul-left li a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-nav-main-ul-left > li:hover{
    background: #1b1b1b;
}

.header-nav-main-ul-left > li:hover > a{
    text-decoration: underline;
}

.header-nav-main-ul-left li a{
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
}

.header-nav-right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 30px;
    width: 40%;
}

.header-nav-right ul{
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0px;
}

.header-nav-right .ul-top{
}

.header-nav-right .ul-top li a{
    font-size: 15px;
    color: #fff;
    margin-left: 20px;
    text-transform: uppercase;
}

.header-nav-right .ul-top li a img{
    padding-left: 5px;
    width: 25px;
}

.ul-bottom-search{
    display: none;
}

.li-search{
    position: relative;
    width: 80%;
}

.li-search input{
    color: #fff;
    padding: 3px 30px 3px 15px;
    background: #000;
    border: solid 1px #fff;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
}

.li-search-btn-submit{
    position: absolute;
    border: none;
    background: transparent;
    top: 3px;
    right: 6px;
    color: #fff;
    cursor: pointer;
}

/* ===================================================== */
/* SUB NAV */
/* ===================================================== */

.sub_nav_panel{
    position: absolute;
    display: flex;
    left: 0;
    top: 95px;
    width: 100%;
    height: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    transition: all ease 0.2s;
    z-index: 999;
}

.header-nav-main-ul-left li:hover .sub_nav_panel{
    height: 390px;
}

/* main panel */
.nav_panel_container{
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 60%;
}

.nav_panel_col_ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav_panel_col_ul li{
    padding: 0;
    text-align: left;
}

.nav_panel_col_ul li, .nav_panel_col_ul li a{
    font-size: 15px;
    color: #383737;
    font-weight: normal;
}

.panel_li_title, .panel_li_title a{
    font-size: 17px !important;
    color: #000 !important;
    font-weight: bold !important;
}

/* right panel */

.nav_panel_right{
    position: relative;
    width: 40%;
}

.nav_panel_banner_img{
    overflow: hidden;
    max-height: 350px;
}

.nav_panel_banner_img img{
    width: 100%;

}

/* Mobile button */

.btn_mobil_nav{
    display: none;
}

.ul-bottom-search{
    display: none;
}

.button {
    width: 45px;
    height: 30px;
    cursor: pointer;
}

.bar {
    width: 45px;
    height: 5px;
    margin-bottom: 10px;
    background-color: #fff;
    transform: translate3d(0,0,0);
}

.button.selected-button .bar:first-child {
    animation: x-morph-a .6s ease forwards;
}

.button.selected-button .bar:nth-child(2) {
    animation: x-morph-b .6s ease forwards;
}

.button.selected-button .bar:last-child {
    margin-bottom: 0;
    animation: x-morph-c .6s ease forwards;
}

.button .bar:first-child {
    animation: x-morph-r-a .6s ease reverse forwards;
}

.button .bar:nth-child(2) {
    animation: x-morph-r-b .6s ease reverse forwards;
}

.button .bar:last-child {
    margin-bottom: 0;
    animation: x-morph-r-c .6s ease reverse forwards;
}

@keyframes x-morph-a {
    0% {

    }

    50% {
        transform: translateY(17px);
    }

    100% {
        transform: translateY(17px) rotate(45deg);
    }
}

@keyframes x-morph-b {
    0% {

    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-45deg);
    }
}

@keyframes x-morph-c {
    0% {

    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(-15px) rotate(-45deg);
    }
}


@keyframes x-morph-r-a {
    0% {

    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(20px) rotate(45deg);
    }
}

@keyframes x-morph-r-b {
    0% {

    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-45deg) translateY(-3px);
    }
}

@keyframes x-morph-r-c {
    0% {

    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(-15px) rotate(-45deg);
    }
}

@keyframes fadeInDown {
    0% {
        transform: translateX(-100%);
        opacity 0;
    }
    100% {
        transform: translateX(0px);
        opacity 1;
    }
}

/***********************************/
/* SIDE NAVIGATION MENU */
/***********************************/
.side-nav{
    display: none;
    position: fixed;
    left: -400px;
    top: 0px;
    width: 260px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    z-index: 9999;
    transition: left ease 0.6s;
}

.side-nav-active{
    left: 0px;
}

.side-nav-logo{
    width: 100%;
    text-align: center;
    height: 75px;
    background: #000;
    border-bottom: solid 3px #ff0000;
}

.side-nav-logo img{
    width: 60%;
    padding: 15px 0px;
}

.side-nav-ul{
    width: 100%;
    padding-top: 30px;
}

.side-nav-ul li{
    position: relative;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    border-top: solid 1px #d0d0d0;
    cursor: pointer;
}

.side-nav-ul li a{
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
}

.side-nav-li-dropdown > i{
    position: absolute;
    top: 15px;
    right: 15px;
}

.side-nav-ul-dropdown{
    display: none;
    padding-top: 10px;
    width: 100%;
}

.side-nav-ul-dropdown > li, .side-nav-ul-dropdown > li a{
    display: block;
    font-size: 15px;
    font-weight: normal;
    color: #383737;
    width: 100%;
}

.side-nav-ul-dropdown-active{
}

.side-nav-lang{
    display: flex;
    flex-wrap: wrap;
}

.side-nav-lang li{
    padding-left: 15px;
}

.side-nav-lang li a{
    color: #000;
    font-size: 18px;
    font-weight: normal;
}

.side-nav-lang li img{
    width: 25px;
}



/**********************************/
/* RESPONSIVE */
/**********************************/

@media screen and (max-width: 1130px){

    .header-nav-main-ul-left{
        display: none;
    }

    .li-search{
        display: none;
    }

    .ul-top{
        display: none !important;
    }

    .btn_mobil_nav, .ul-bottom-search{
        display: block;
    }

    .header-nav-right{
        width: 100%;
    }

    .side-nav{
        display: block;
    }
}

@media screen and (max-width: 530px){

    .ul-top{
        display: none !important;
    }
}

